View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Zoom Not Resizing

It worked fine for me. Do you have the workbook protected?

Does it raise an error.

Tested in xl2000

--
Regards,
Tom Ogilvy

"Phil Hageman" wrote in message
...
Worksheet "Scorecard" Zoom is manually set at 25%.
Running the below macro does not resize to 61%. Can
someone help correct this code?

Sub GoToScorecard()
Sheets("Scorecard").Select
Range("A1").Select
ActiveWindow.Zoom = 61
End Sub