ColinCoady
New Member
- Joined
- Mar 21, 2019
- Messages
- 35
Cant't get this to work.
Looking for code to automatically go to cell A1 (actually range A1:K1 because it's a merged cell) when I click on one particular sheet tab at any time and every time.
Hope someone can help
This is what I have that works only when I debug it step by step.
Looking for code to automatically go to cell A1 (actually range A1:K1 because it's a merged cell) when I click on one particular sheet tab at any time and every time.
Hope someone can help
This is what I have that works only when I debug it step by step.
Code:
Sub Move2A1()
If Sheets("Docs").Select = True Then
Cells(1, 1).Select
End If
End Sub