Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 349
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   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 35,218
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   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 349
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

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
Record changing cell data into a column or range Emmie Excel Worksheet Functions 2 December 21st 06 12:23 AM
Excel - copy absolute cell references (within the range) as relati Merf1013 Excel Discussion (Misc queries) 1 October 10th 06 07:46 AM
Match function...random search? Les Excel Worksheet Functions 10 July 28th 05 11:54 AM
View and Cell Sum Range Dewayne Excel Discussion (Misc queries) 4 December 29th 04 03:23 PM
limit worksheet view to specified cell range Mike Setting up and Configuration of Excel 2 December 16th 04 11:13 PM


All times are GMT +1. The time now is 08:25 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"