The vba code below:
Sub try_1()
Dim sac As Range 'Original ActiveCell
Set sac = ActiveCell
ActiveCell.Offset(0, 2).Select
sac.RefersToRange.Select
End Sub
Is intended to go back to the original ActiveCell, after doing stuff that is symbolized by the 2nd executable statement. However, it fails at the last statement just before "End Sub". Although there is an error message, I don't understand it. Can you help? I've tried leaving out "RefersToRange" but it did not work. I did figure a work around, but it is more complicated, and I'd prefer to keep the code as simple as reasonably feasible.