view entire workbook

  • Thread starter Thread starter cgrose54
  • Start date Start date
C

cgrose54

I have a worksheet with mutlitple columns, is there any way to view the
entire worksheet at once without using the slide to view from one end to the
other? Any help is greatly appreciated.
 
You could adjust the zoom level to 50% (or smaller) to see more
columns, though it will be difficult to make out the detail of each
cell.

Pete
 
You may or may not like the results but put this is the ThisWorkbook module
to do every sheet

Private Sub Workbook_SheetActivate(ByVal Sh As Object)
ActiveSheet.UsedRange.Select
ActiveWindow.Zoom = True
Range("a1").select
End Sub
 
Back
Top