Right click on the Excel icon to the left of the File menu on the menu bar. Choose view code. Enter this
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Sheet1.Activate
Range("$A$1").Select
End Sub
This will cause the Workbook to open on Sheet1 with $A$1 selected. If you want each sheet to always open at $A$1, the add this code
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
ActiveSheet.Range("$A$1").Select
End Sub
HTH
Sorry royUK: I didn't see your post
This message was edited by lenze on 2002-10-10 09:52