Results 1 to 6 of 6

Thread: How to fullscreen Excel Worksheet

  1. #1
    Join Date
    Jun 2006
    Posts
    23

    How to fullscreen Excel Worksheet

    Some time ago Excel stopped opening my scheduled worksheets in a full size window. The sheets function otherwise as expected. It is just an annoyance to have to enlarge the window after the file opens automatically. There are three of them that start every morning. I have not been able to locate how to change it myself. Is there a way to make sure the Excel sheets always open in a full size window.

  2. #2
    Join Date
    Nov 2009
    Posts
    675

    Re: How to fullscreen Excel Worksheet

    Excel "remembers" that last window size it was on.
    1. Start Excel
    2. Maximize the main application window and the workbook window that Excel
    creates automatically.
    3. Once you have thew windows maximized the way you want them, Exit Excel.

  3. #3
    Join Date
    Jun 2006
    Posts
    23

    Re: How to fullscreen Excel Worksheet

    This did not help. I did as you stated in your response but the application is still opening in a small window and the workbook is opening in a small window.

  4. #4
    Join Date
    Feb 2010
    Posts
    678

    Re: How to fullscreen Excel Worksheet

    I'm assuming you have write access to these workbooks and you can add macros. If so, then you can add this to the workbook code module to maximize the windows when the workbook is opened:
    Code:
    Private Sub Workbook_Open()
    Application.WindowState = xlMaximized 'maximize the application window
    ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
    End Sub

  5. #5
    Join Date
    Feb 2010
    Posts
    570

    Re: How to fullscreen Excel Worksheet

    Ok I am working on the macro - what am I doing wrong. I have added a module with
    Code:
    Sub Maximum_Open()
    '
    ' Maximum Macro
    ' Macro recorded 2/23/2007 by mrpaulo
    '
    
    '
    Private Sub Workbook_Open()
    Application.WindowState = xlMaximized 'maximize the application window
    ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
    
    End Sub
    
    and I have set up a sheet that says the following:
    
    Private Sub Maximum_Open()
    Call Maximum_Form
    End Sub
    late in the day I may be loosing it.

  6. #6
    Join Date
    Feb 2010
    Posts
    181

    Re: How to fullscreen Excel Worksheet

    There are a couple of ways to have a procedure run each time excel opens the workbook. The first way is to put the procedure in a General module (not behind a
    worksheet, not behind ThisWorkbook).
    Code:
    Name that procedure
    Sub Auto_Open()
    (and don't change the name)
    
    Sub Auto_Open()
    Application.WindowState = xlMaximized 'maximize the application window
    ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
    End Sub
    The second way is to use the Workbook_Open event. This procedure goes behind the ThisWorkbook module : Private Sub Workbook_Open(). You can't change the name of this one, either (or excel won't find either of them) :
    Code:
     Private Sub Workbook_Open()
    Application.WindowState = xlMaximized 'maximize the application window
    ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
    End Sub

Similar Threads

  1. Replies: 8
    Last Post: 04-12-2011, 11:24 AM
  2. How to hide certain pages of Excel worksheet
    By EricTheRed in forum Tips & Tweaks
    Replies: 1
    Last Post: 12-05-2011, 05:40 AM
  3. Excel opens but not the worksheet!
    By Rob Dizzle in forum Windows Software
    Replies: 5
    Last Post: 12-01-2010, 04:21 PM
  4. How to Add Combo Box to a Worksheet of Excel?
    By Pratim in forum Windows Software
    Replies: 5
    Last Post: 06-01-2010, 06:07 PM
  5. How to calculate GPA in Excel worksheet
    By Lambard in forum Windows Software
    Replies: 3
    Last Post: 06-06-2009, 09:29 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,575,350.96920 seconds with 17 queries