-------------------------------------------------------------------------------------------- We want to help you; help us to do it by reading this: Before you ask a question.
You can record a macro, then set a custom button to run the macro. When the macro is recording, (assuming you are already not on cell A1) you can select cell A1, then stop the recording. It should have all the code taken care of.
Or, if you want it in reference to the current row, you could reference that cell a few different ways, one of which would be:
Code:
Private Sub MoveToColumnA()
Range("A" & ActiveCell.Row).Activate
End Sub
By the way, who's Al?
--
"If to err is human, then I must be some kind of human!" -Me
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.