Consulting

Results 1 to 4 of 4

Thread: Solved: Solved Zoom in if specific cells are selected

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    VBAX Newbie
    Joined
    May 2009
    Posts
    2
    Location

    Solved: Solved Zoom in if specific cells are selected

    Hi,

    I've this code for zooming if cell D8 is selected. Cell D8 is a merged cell with data validation (dropdownlist). For some reason the code doesn't seem to work. If I choose an unmerged cell it seems to work alright. Please can anyone tell me what I'm doing wrong?



    [VBA]Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Target.Address = "$D$8" Then
    ActiveWindow.Zoom = 125
    Else
    ActiveWindow.Zoom = 100
    End If
    End Sub
    [/VBA]
    Last edited by KarlV; 05-20-2009 at 01:15 PM. Reason: Solved

Posting Permissions

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