A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Setting up and Configuration
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

mult. w/sheets need identical view when opening (range, mag, cell)



 
 
Thread Tools Display Modes
  #1  
Old February 10th, 2007, 04:41 AM posted to microsoft.public.excel.setup
Peter
external usenet poster
 
Posts: 962
Default mult. w/sheets need identical view when opening (range, mag, cell)

Dear Excel Gurus,

I often work with large multiple spreadsheets in a given workbook. The
spreadsheets have identical structure within each book. They differ from
each other only in respect of the data content of each sheet.

My productivity would be increased immeasurably if I could issue a 'global
command' to apply to a given workbook which does three things which will
enable each worksheet to open with an identical view and with identical cell
selection position:
--set all worksheets view to the same magnification
--set all worksheets view to the same cell range
--position the cursor or a selected cell in the same position in each
worksheet.

The 'global' command would need to be resettable in any given session of my
working on the same workbook, so that I could for example, work on one area
of the sheets in one magnification and then change the setting so as to work
on another area of each worksheet at another magnification and etc.

I would be very grateful if someone could suggest a command I could use.

Regards,

Peter
  #2  
Old February 10th, 2007, 02:39 PM posted to microsoft.public.excel.setup
Dave Peterson
external usenet poster
 
Posts: 19,791
Default mult. w/sheets need identical view when opening (range, mag, cell)

You can create a macro that runs each time excel opens that workbook. And you
can call that macro anytime you want (tools|macro|macros, select it and click
run).

This may give you a start:

Option Explicit
Sub auto_Open()
Dim wks As Worksheet
Dim myZoom As Long
Dim myAddr As String

myZoom = 80
myAddr = "C99"

For Each wks In ThisWorkbook.Worksheets
Application.Goto wks.Range(myAddr), scroll:=True
ActiveWindow.Zoom = myZoom
Next wks

ThisWorkbook.Worksheets(1).Select
End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Peter wrote:

Dear Excel Gurus,

I often work with large multiple spreadsheets in a given workbook. The
spreadsheets have identical structure within each book. They differ from
each other only in respect of the data content of each sheet.

My productivity would be increased immeasurably if I could issue a 'global
command' to apply to a given workbook which does three things which will
enable each worksheet to open with an identical view and with identical cell
selection position:
--set all worksheets view to the same magnification
--set all worksheets view to the same cell range
--position the cursor or a selected cell in the same position in each
worksheet.

The 'global' command would need to be resettable in any given session of my
working on the same workbook, so that I could for example, work on one area
of the sheets in one magnification and then change the setting so as to work
on another area of each worksheet at another magnification and etc.

I would be very grateful if someone could suggest a command I could use.

Regards,

Peter


--

Dave Peterson
  #3  
Old February 12th, 2007, 12:28 AM posted to microsoft.public.excel.setup
Peter
external usenet poster
 
Posts: 962
Default mult. w/sheets need identical view when opening (range, mag, c

Thankyou dave,
I will try your suggestion. I dont know anything about macros but now is my
chance to learn! Thanks for the tip about where to get info on macros.
Cheers,
Peter




"Dave Peterson" wrote:

You can create a macro that runs each time excel opens that workbook. And you
can call that macro anytime you want (tools|macro|macros, select it and click
run).

This may give you a start:

Option Explicit
Sub auto_Open()
Dim wks As Worksheet
Dim myZoom As Long
Dim myAddr As String

myZoom = 80
myAddr = "C99"

For Each wks In ThisWorkbook.Worksheets
Application.Goto wks.Range(myAddr), scroll:=True
ActiveWindow.Zoom = myZoom
Next wks

ThisWorkbook.Worksheets(1).Select
End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Peter wrote:

Dear Excel Gurus,

I often work with large multiple spreadsheets in a given workbook. The
spreadsheets have identical structure within each book. They differ from
each other only in respect of the data content of each sheet.

My productivity would be increased immeasurably if I could issue a 'global
command' to apply to a given workbook which does three things which will
enable each worksheet to open with an identical view and with identical cell
selection position:
--set all worksheets view to the same magnification
--set all worksheets view to the same cell range
--position the cursor or a selected cell in the same position in each
worksheet.

The 'global' command would need to be resettable in any given session of my
working on the same workbook, so that I could for example, work on one area
of the sheets in one magnification and then change the setting so as to work
on another area of each worksheet at another magnification and etc.

I would be very grateful if someone could suggest a command I could use.

Regards,

Peter


--

Dave Peterson

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:47 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.