Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
cwwolfdog
 
Posts: n/a
Default

Thanks a lot Dave.

"Dave Peterson" wrote:

I think I'd let the other users do whatever they found comfortable.

But I'd have a macro that changed the zoom to what I liked -- I could run that
whenever I wanted on whatever window is showing.

Something like:

Option Explicit
Sub testme01()
Dim myWindow As Window
Dim wks As Worksheet
Dim CurSel As Range
Dim ActCell As Range
Dim myPct As Long

myPct = 100

Set CurSel = Selection
Set ActCell = ActiveCell

Application.ScreenUpdating = False

For Each myWindow In ActiveWorkbook.Windows
myWindow.Zoom = myPct
Next myWindow

For Each wks In ActiveWorkbook.Worksheets
wks.Select
ActiveWindow.Zoom = myPct
Next wks

Application.Goto CurSel
ActCell.Activate

Application.ScreenUpdating = True

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

cwwolfdog wrote:

I have about 50 worksheets and the employees will be updating there own
worksheet. Some like to change the size of the worksheet by zooming out
which makes it hard for me to read. Is there a way that I can set the
zooming to a specific percent and then no let anybody change it?

Thanks,

cwwolfdog


--

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
How to change the default font and size of "comments"? ClayMcQ Excel Discussion (Misc queries) 1 January 7th 05 11:43 PM
How can I change size of the picture without changing chartobject? Marie J-son Charts and Charting in Excel 6 December 7th 04 12:34 PM
Change datalabel font size for all chartobjects in a row Marie J-son Charts and Charting in Excel 2 December 5th 04 07:02 PM
Change Path names in copied work book jheaney Excel Worksheet Functions 2 November 18th 04 07:29 PM
Change Font Size Steve Klenner Excel Worksheet Functions 2 November 14th 04 09:34 PM


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