Sheets("Sheet4").Activate 'jumps to sheet4
Cells(2, 2).Activate 'activates cell B2
This method activates the VBA sheet codename of "Sheet4" - which may or may not be the sheet in index position 4, and it is independent of the sheet tab nameSheet4.Activate
Sub changesheet()
Sheets("Sheet4").Activate 'jumps to sheet4
Cells(2, 2).Activate 'activates cell B2
End Sub