I have a macro that runs each time the user changes cell, at the end of the macro I then want to be returned to the original cell and I can't figure out how to do this. My macro
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
.
.
.
Range(Target).Select
Application.EnableEvents = True
End Sub
This throws an error, so I am not sure how to do this. Any help appreciated.
Thanks in advance.
Bookmarks