Checking a Check Box in Excel

  • Thread starter Thread starter Frenchie
  • Start date Start date
F

Frenchie

How do I check a check box in Excel. I need to know what to put in

Private Sub CheckBox1_Click()
'this bit here'
End Su
 
Private Sub CheckBox1_Click()
if checkbox1.Value = True then
msgbox "box is checked"
else
msgbox "box is not checked"
End if
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

Back
Top