Link to home
Start Free TrialLog in
Avatar of drnadeem
drnadeem

asked on

Browse to given cell location

how can I select a given  cell location

e.g: WC2000


thanks
 
ASKER CERTIFIED SOLUTION
Avatar of cri
cri
Flag of Switzerland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of macbone2
macbone2

Right, I know this but is there a way to make a selected range the top left cell in focus?
Sub TryThis()
   'Replace ActiveSheet by the appropriate worksheet
   Application.Goto reference:=ActiveSheet.Range("c5:e10"), Scroll:=True
End Sub
Thanks cri. Yeah I discovered this yesterday (with the aid of an amateur at the office) I must have been having a brainstorm, it never occurred to me to record a macro with F5 (find range)Dumb or wot

macbone2