I have an Excel program in which there are numerous worksheets, with the main sheet called "SOM Game".

I have created a macro that I've attached to each of the other worksheets that is supposed to send me back to the main sheet, with column BT at the center of the screen.

Here's the code I use for it.
Sub playgame()
    Sheets("SOM GAME").Select
    Range("BT1").Select
     
    
End Sub
A lot of times it winds up a bit right or left of center.

Is there way to make it so BT is at the center everytime?