How to correctly translate this?

How to correctly translate this?

    Sheets("Options").Select
    Application.Goto Reference:="R50C1"
    Application.Goto Reference:="R2C1"


I translated it thru this: 

 Sheets("Options").Select
 Range("R50").Select
 Range("C1").Select    
 Range("R2").Select
 Range("C1").Select  

Is this the correct way?