Single cell access

  • Thread starter Thread starter FP Novice
  • Start date Start date
F

FP Novice

Hello,

I created a spreadsheet to lookup patch panel positions on a fiber optic
network for technicians. I would like the technicians to have access to a
single cell where they enter data, after they press enter I want them to
remain in the same cell (not advance down the sheet) is this possible?
 
Go to Tools->Options, select edit tab and uncheck the box Move Selection
After Enter. They can still click out, but enter does not move them.
 
John, this is what I was looking for but being that it is an Excel option the
change affects the attributes of the program as well when viewed on another
person's version it does not work unless they set the option to not move...

Can I make it so the not moving on carriage return works as a worksheet
attribute not a program setting?
 
Private Sub Worksheet_Activate()
Application.MoveAfterReturn = False
End Sub

Private Sub Worksheet_Deactivate()
Application.MoveAfterReturn = True
End Sub

Copied to the sheet module.

Of course, will depend upon user enabling macros.


Gord Dibben MS Excel MVP
 

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