G Guest May 21, 2007 #1 I would like to move the cursor to the first or any coloumn in the same row writing a macro. Can anyone help. Thanks in advance
I would like to move the cursor to the first or any coloumn in the same row writing a macro. Can anyone help. Thanks in advance
N NickHK May 21, 2007 #2 Assuming you not mrean the mouse cursor, but the active cell, here's afew options: Range("A1").select Activecell.offset(10,0).select Application.Goto Range("IV1") NickHK
Assuming you not mrean the mouse cursor, but the active cell, here's afew options: Range("A1").select Activecell.offset(10,0).select Application.Goto Range("IV1") NickHK
J Joerg May 21, 2007 #3 Here is another one: Activecell.EntireRow.Cells(1).select This will move the "cursor" to the first column in the same row. For any other column change the value 1 to the desired column number. Joerg
Here is another one: Activecell.EntireRow.Cells(1).select This will move the "cursor" to the first column in the same row. For any other column change the value 1 to the desired column number. Joerg