Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a sheet which is a project summary.
The sheet contains information in cells A1 to P45 inclusive. Is there a way to make these cells always fill the page whichever computer i am on so that i can always see A1-P45 inclusive? I find as i use the sheet on different computers with different screen sizes, it can vary if the screen shows all the desired contents or not. Can anyone help? Thanks, Roger |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is there a way to make these cells always fill the page whichever computer I
am on so that i can always see A1-P45 inclusive? Perhaps one way would be to place this on the module for your specific worksheet. Private Sub Worksheet_Activate() Dim Remember As Range Set Remember = Selection [A1:P45].Select ActiveWindow.Zoom = True Remember.Select End Sub -- HTH :) Dana DeLouis "Roger on Excel" wrote in message ... I have a sheet which is a project summary. The sheet contains information in cells A1 to P45 inclusive. Is there a way to make these cells always fill the page whichever computer i am on so that i can always see A1-P45 inclusive? I find as i use the sheet on different computers with different screen sizes, it can vary if the screen shows all the desired contents or not. Can anyone help? Thanks, Roger |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This works very nicely - thanyou very much
Regards, Roger "Dana DeLouis" wrote: Is there a way to make these cells always fill the page whichever computer I am on so that i can always see A1-P45 inclusive? Perhaps one way would be to place this on the module for your specific worksheet. Private Sub Worksheet_Activate() Dim Remember As Range Set Remember = Selection [A1:P45].Select ActiveWindow.Zoom = True Remember.Select End Sub -- HTH :) Dana DeLouis "Roger on Excel" wrote in message ... I have a sheet which is a project summary. The sheet contains information in cells A1 to P45 inclusive. Is there a way to make these cells always fill the page whichever computer i am on so that i can always see A1-P45 inclusive? I find as i use the sheet on different computers with different screen sizes, it can vary if the screen shows all the desired contents or not. Can anyone help? Thanks, Roger |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Does this macro do what you want?
Sub ZoomToFit_A1toP45() Dim CurrentCell As String CurrentCell = ActiveCell.Address Range("A1:P45").Select ActiveWindow.Zoom = True Range(CurrentCell).Select End Sub Rick "Roger on Excel" wrote in message ... I have a sheet which is a project summary. The sheet contains information in cells A1 to P45 inclusive. Is there a way to make these cells always fill the page whichever computer i am on so that i can always see A1-P45 inclusive? I find as i use the sheet on different computers with different screen sizes, it can vary if the screen shows all the desired contents or not. Can anyone help? Thanks, Roger |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
ZOOM | Excel Worksheet Functions | |||
Can't Zoom | Charts and Charting in Excel | |||
print box opens in right screen of dual screen setup why | Excel Discussion (Misc queries) | |||
Need to convert point on screen to various screen resolutions | Excel Discussion (Misc queries) | |||
setting of screen zoom in excel | Excel Discussion (Misc queries) |