View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
riggi riggi is offline
external usenet poster
 
Posts: 17
Default checkBox help!!!

Hi,
I am trying to write this checkbox code, I dunno for some reason its
not working. Please tell me whats wrong in it. I will really
appreciate.

Thanks,

Riggi


Sub CheckBox1_Click()

If Checkbox1.Value = True Then
MsgBox (" Checked ")
Else
MsgBox ("unchecked")
End If
End Sub