Go To Cell Reference on Worksheet Open

G

Guest

I need some code that when I click on a worksheet tab that I go directly to
cell B3 each time on open. I have tried this code but it always opens at the
last EXCEL cell referenced before exiting the worksheet (i.e. h35).

Private Sub Worksheet_Open()
Application.Goto Reference:="R3C2"
End Sub

Can someone help with the correct code for this?
 
G

Guest

Try this:-

Private Sub Worksheet_Activate()
Range("B3").Select
End Sub

Right click the sheet tab, view code and paste this in.

Mike
 

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