View Single Post
 
Old 03-11-2016, 03:38 PM
Auto Auto is offline Windows 8 Office 2007
Novice
 
Join Date: Mar 2016
Posts: 9
Auto is on a distinguished road
Default

Never mind I found this solution that works:

Hit ALT+F11 to open VBA.
Select: 'This Workbook' in the VBA Project's 'Miscrosoft Excel Objects' (upper left window)

In large right window put the following code:

Private Sub Workbook_Open()
Sheet1.Range("A1").Select
End Sub

This will select A1 when Workbook opens.
Reply With Quote