Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35
Default Zooming of Excel

I am creating a report using excel and i want to write/find a module that
makes my report open up on anyones machine using excel 2000 look the same.
I want it to adjust the zoom according to the users screen setting? Is this
possible? I am not sure how to do it. If anyone knows could they help i am
looking for a way for when you open up my excel program it will look the
same on everyones machine no matter what the screen settings are at. Excel
will adjust for them automatically making my report look the way it does on
my machine. Is this possible?


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 136
Default Zooming of Excel

Try something like this:

Private Sub Worksheet_Activate()
Range("a1:h1").Select
ActiveWindow.Zoom = True
If ActiveWindow.Zoom 130 Then
ActiveWindow.Zoom = 130
End If
End Sub

Right-click on the sheet tab, select view code and paste this. Adjust
the range and maximum size (130% in this example to whaterver you choose)

Rich Cooper wrote:
I am creating a report using excel and i want to write/find a module that
makes my report open up on anyones machine using excel 2000 look the same.
I want it to adjust the zoom according to the users screen setting? Is this
possible? I am not sure how to do it. If anyone knows could they help i am
looking for a way for when you open up my excel program it will look the
same on everyones machine no matter what the screen settings are at. Excel
will adjust for them automatically making my report look the way it does on
my machine. Is this possible?


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
logitech mouse wheel in Excel zooming rather than scrolling jukebox Excel Discussion (Misc queries) 1 May 8th 10 05:03 AM
Keyboard Shortcut for Zooming Henrik Excel Worksheet Functions 1 February 4th 06 08:54 PM
Chart Zooming and scrolling [email protected] Charts and Charting in Excel 3 November 18th 05 11:29 PM
Zooming in on a Scatter Plot [email protected] Charts and Charting in Excel 0 November 10th 05 11:38 PM
Zooming in on a row L. Howard Kittle Excel Discussion (Misc queries) 0 October 25th 05 10:30 PM


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

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

About Us

"It's about Microsoft Excel"