I have two spreadsheets in Excel. Sheet1 is called Overview, and Sheet2 is called Comments. I would like to go to the same row on the second sheet as the first, for example, if I had a cell selected in row 2 on Sheet1 and clicked the macro, it would take me to row 2 on the Sheet2.
My code so far (I placed a MsgBox just to see if was getting the the cell location):
Sub Comment()
Sheets("Overview").Select
myRow = ActiveCell.Row
myCol = ActiveCell.Column
MsgBox myRow & "," & myCol
Sheets("Comments").Select
(Stuck)
End Sub
This jumps to the same cell on the second sheet.