+ Reply to Thread
Results 1 to 2 of 2

Zoom via Macro for WorkSheet to activate?

  1. #1
    Registered User
    Join Date
    07-17-2005
    Posts
    10

    Zoom via Macro for WorkSheet to activate?

    Hi,

    I have more worksheet in the workboock.
    I wish the Application in another PC - wiht different
    Monitor-resolution to opening. However in the same workSheet-largeness.

    A.) Automatlically?

    B.) Via macro (Button) in the defined Zoom, for all workSheet to activate?

    Have I any cance?
    Thank you very much!
    Wergan

  2. #2
    Gareth
    Guest

    Re: Zoom via Macro for WorkSheet to activate?

    Hi Wergan,

    I have placed a macro below that should hopefully do what you need. I
    use the Zoom - Fit Selection functionality of Excel. (There are other
    ways to achieve what you're doing but I think this is the simplest - you
    don't need to check screen resolution this way.)

    In this example I have assumed you want to be able to see columns 1>5.

    If you assign this to a button then it will run whenever clicked, on the
    activesheet. Alternatively, if you want it to run upon opening, you
    should place a call to it in the Workbook_OPen event in ThisWorkbook,
    having first made sure that the worksheet you need to work on is active.

    HTH,
    Gareth

    Sub ZoomHowIWantIt()

    Dim PreviousSelection As Range
    Dim blnEventsEnabled As Boolean

    With ActiveSheet
    'Remember what was previously selected
    Set PreviousSelection = Selection

    Application.ScreenUpdating = False
    blnEventsEnabled = Application.EnableEvents
    Application.EnableEvents = False

    'Set the range you want to be in the activewindow.
    'I'm assuming you're more concerned about columns
    'than rows
    Range(.Columns(1), .Columns(5)).Select
    ActiveWindow.Zoom = True
    'return to previous selection
    PreviousSelection.Select
    Application.EnableEvents = blnEventsEnabled

    End With

    Set PreviousSelection = Nothing
    Application.ScreenUpdating = True

    End Sub


    frenic wrote:
    > Hi,
    >
    > I have more worksheet in the workboock.
    > I wish the Application in another PC - wiht different
    > Monitor-resolution to opening. However in the same
    > workSheet-largeness.
    >
    > A.) Automatlically?
    >
    > B.) Via macro (Button) in the defined Zoom, for all workSheet to
    > activate?
    >
    > Have I any cance?
    > Thank you very much!
    > Wergan
    >
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1