Hi,
Presumably you're referring to the Excel checkbox control rather than the Activex UserForms controls in the VBE?
The view Code window of the checkbox is actually the Checkbox_Click event, and the default values are either True or False. e.g. put the following in the code
Sub Checkbox1_click
MsgBox Checkbox1
End Sub
and see it toggle between True/False as you click the button. Hence you access the value by simply referring to it.
I'm confused by your second question. Are you sure you really mean a checkbox? A checkbox can't 'take a range', it's essentially just a binary control. You can check the state of a checkbox and do things like naming a range according to its state, but in that case you'd presumably build that into the Checkbox 1 click event.
Can you explain a little further
Bookmarks