Thread: VBA help
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
SIR Knight SIR Knight is offline
external usenet poster
 
Posts: 27
Default VBA help


PANCAKE,

If you enter the following in the workbook area (ALT + F11, doubleclick
on ThisWorkbook in project window( CTRL + R if not visible))

Copy this in to the ThisWorkbook code window

Private Sub Workbook_Open
Sheets("Start").Select
Range("A1").Select
End Sub

You should then be directed to this page when the workbook is opened
(as long as Macro enabled)

Steve