Macro to set Active Cell

G

Graham Daniels

Hi,

Is it possible to create a macro to get the active cell to 'jump' to a
certain point in a sheet? Have tried recording the mouse scrolling down to a
certain point but that doesn't seem to work.

Thanks.

Graham
 
N

N10

Install this in the code option of the button

Private Sub CommandButton1_Click()
Range("A17").activate
End Sub

Graham Daniels said:
I want to jump to , say A17 when the user clicks a button

Graham
 
G

Graham Daniels

Thanks to all responders, now working !

Graham


N10 said:
Install this in the code option of the button

Private Sub CommandButton1_Click()
Range("A17").activate
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top