drivingforce
New Member
- Joined
- Dec 11, 2013
- Messages
- 19
Hi all knowledgeable excel people out there!
The code below will open my spreadsheet at any specified fixed location (e.g. A1) , but is it possible to re-write this code in such a way that the spreadsheet will open at a dynamic location instead?
Private Sub Workbook_Open()
Sheets("Sheet1").Activate
Range("A1").Select
End Sub
What I have is a spreadsheet which contains dates for a couple of years on row 3, and I'd like the spreadsheet to open at today's location, if possible?
Thanks.
The code below will open my spreadsheet at any specified fixed location (e.g. A1) , but is it possible to re-write this code in such a way that the spreadsheet will open at a dynamic location instead?
Private Sub Workbook_Open()
Sheets("Sheet1").Activate
Range("A1").Select
End Sub
What I have is a spreadsheet which contains dates for a couple of years on row 3, and I'd like the spreadsheet to open at today's location, if possible?
Thanks.