Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How to open Excel workbook in full size window

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 857
Default How to open Excel workbook in full size window

Eunice,

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.


"Eunice Anderson" wrote:

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?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How to open Excel workbook in full size window

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.

Thanks for your response.

"Vergel Adriano" wrote:

Eunice,

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.


"Eunice Anderson" wrote:

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?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 857
Default How to open Excel workbook in full size window

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:

Private Sub Workbook_Open()
Application.WindowState = xlMaximized 'maximize the application window
ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
End Sub




"Eunice Anderson" wrote:

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.

Thanks for your response.

"Vergel Adriano" wrote:

Eunice,

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.


"Eunice Anderson" wrote:

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?

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default How to open Excel workbook in full size window

Ok - working on the macro - what am I doing wrong. I have added a module with
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.




"Vergel Adriano" wrote:

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:

Private Sub Workbook_Open()
Application.WindowState = xlMaximized 'maximize the application window
ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
End Sub




"Eunice Anderson" wrote:

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.

Thanks for your response.

"Vergel Adriano" wrote:

Eunice,

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.


"Eunice Anderson" wrote:

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?



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default How to open Excel workbook in full size window

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).

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).

Private Sub Workbook_Open()
Application.WindowState = xlMaximized 'maximize the application window
ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
End Sub

mrpaulo wrote:

Ok - working on the macro - what am I doing wrong. I have added a module with
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.

"Vergel Adriano" wrote:

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:

Private Sub Workbook_Open()
Application.WindowState = xlMaximized 'maximize the application window
ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
End Sub




"Eunice Anderson" wrote:

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.

Thanks for your response.

"Vergel Adriano" wrote:

Eunice,

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.


"Eunice Anderson" wrote:

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?


--

Dave Peterson
  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default How to open Excel workbook in full size window

Thanks it worked great.


"Dave Peterson" wrote:

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).

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).

Private Sub Workbook_Open()
Application.WindowState = xlMaximized 'maximize the application window
ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
End Sub

mrpaulo wrote:

Ok - working on the macro - what am I doing wrong. I have added a module with
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.

"Vergel Adriano" wrote:

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:

Private Sub Workbook_Open()
Application.WindowState = xlMaximized 'maximize the application window
ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
End Sub




"Eunice Anderson" wrote:

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.

Thanks for your response.

"Vergel Adriano" wrote:

Eunice,

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.


"Eunice Anderson" wrote:

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?


--

Dave Peterson

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default How to open Excel workbook in full size window

Thanks - one other question if someone wanted the spreadsheet maximum in side
a
Restored down window, could that be done. They are transferring data from
another pdf image and need to be able to see both on the screen.



"Dave Peterson" wrote:

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).

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).

Private Sub Workbook_Open()
Application.WindowState = xlMaximized 'maximize the application window
ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
End Sub

mrpaulo wrote:

Ok - working on the macro - what am I doing wrong. I have added a module with
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.

"Vergel Adriano" wrote:

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:

Private Sub Workbook_Open()
Application.WindowState = xlMaximized 'maximize the application window
ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
End Sub




"Eunice Anderson" wrote:

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.

Thanks for your response.

"Vergel Adriano" wrote:

Eunice,

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.


"Eunice Anderson" wrote:

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?


--

Dave Peterson

  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 857
Default How to open Excel workbook in full size window

Replace this line:

Application.WindowState = xlMaximized 'maximize the application window

with this:

Application.WindowState = xlNormal 'Restore the application window size



"mrpaulo" wrote:

Thanks - one other question if someone wanted the spreadsheet maximum in side
a
Restored down window, could that be done. They are transferring data from
another pdf image and need to be able to see both on the screen.



"Dave Peterson" wrote:

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).

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).

Private Sub Workbook_Open()
Application.WindowState = xlMaximized 'maximize the application window
ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
End Sub

mrpaulo wrote:

Ok - working on the macro - what am I doing wrong. I have added a module with
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.

"Vergel Adriano" wrote:

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:

Private Sub Workbook_Open()
Application.WindowState = xlMaximized 'maximize the application window
ActiveWindow.WindowState = xlMaximized 'maximize the workbook window
End Sub




"Eunice Anderson" wrote:

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.

Thanks for your response.

"Vergel Adriano" wrote:

Eunice,

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.


"Eunice Anderson" wrote:

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?


--

Dave Peterson

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
The window opens in a smaller window not full sized window. Rachael Excel Discussion (Misc queries) 0 November 7th 06 09:04 PM
Excel workbook does not open in open window on desktop DeanH Excel Discussion (Misc queries) 2 March 8th 05 09:51 AM
I can't adjust the window size of an active workbook. Julie Excel Discussion (Misc queries) 1 January 26th 05 05:19 PM
Can Excel open each workbook in a seperate window JVC Dude Setting up and Configuration of Excel 2 January 15th 05 01:01 AM
deleting second open window in a workbook mark in leisure Excel Worksheet Functions 2 November 8th 04 02:09 PM


All times are GMT +1. The time now is 02:45 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"