If the cursor is positioned in cell K10 in the Dashboard sheet and I return to the main menu & click the Dashboard button, I would have expected the cursor to be positioned in cell B2 but it is not? What am I missing?

Sub GoToDashBoard()
    Application.ScreenUpdating = False
    Sheets("DashBoard").Activate
    Range("A1").Offset(1, 1).Select
End Sub
Thanks in advance