hello: what code would I need to add in my macro that records where the
cursor is (eg-cell A14) when the macro button is pushed and then return
to that spot (A14 in this example) at the end of the macro.
Norman Jones - 25 Jan 2006 21:45 GMT

Signature
---
Regards,
Norman
> hello: what code would I need to add in my macro that records where the
> cursor is (eg-cell A14) when the macro button is pushed and then return
> to that spot (A14 in this example) at the end of the macro.
Norman Jones - 25 Jan 2006 21:48 GMT
Hi Native
Dim Rng as Range
Set Rng = ActiveCell
'Your code
Application.GoTo Rng
---
Regards,
Norman
> hello: what code would I need to add in my macro that records where the
> cursor is (eg-cell A14) when the macro button is pushed and then return
> to that spot (A14 in this example) at the end of the macro.