Have cursor go to specific place when worksheet opens?

  • Thread starter Thread starter RJQMAN
  • Start date Start date
R

RJQMAN

Is there any way to make the cursor go to a specific cell every time
the user accesses that worksheet from a sheet tab?
 
hi
this is worksheet code. right click the tab then click view code.
in the left drop down above the code window, click and select worksheet.
the worksheet change event should default into the code window. delete it.
paste this.
Private Sub Worksheet_Activate()
Range("A1").Select 'Adjust to suit
End Sub

regards
FSt1
 

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

Back
Top