tab between unprotected cells

G

Guest

I have a workbook with protected cells that users will use the tab key to
move to each unprotected cell to enter data. There is a cell that contains
check boxes and they will need to click a check box to make a selection --
and then the tab function is disabled. They have to click in the next box to
continue. Is there any way for the tab function to work?
 
D

Dave Peterson

I put a checkbox from the control toolbox toolbar on a worksheet.

I doubleclicked on that checkbox to see its code.

I put this code in that window.

Option Explicit
Private Sub CheckBox1_Click()
ActiveCell.Activate
End Sub

Then I went back to excel. I protected the worksheet and when I clicked on the
checkbox, the activecell was re-selected.
 

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