Workbooks

P

Pieter

XP Profesional
How do I ensure that a workbook opens on the same worksheet every time
 
P

Paul B

Pieter, one way if macros are enabled, put in this workbook code,

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

--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003
 
Top