Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have 2 checkboxes, what i want to do is when i select one, the other 1 will be deselected, which means user will not have the ability to select it the other checkbox. I was wondering if it is possible to do so?

share|improve this question

1 Answer

up vote 6 down vote accepted

Yes it is possible. But why not use an option button instead?

Anyways to answer your query.

Private Sub CheckBox1_Click()
    If CheckBox1.Value = True Then
        CheckBox2.Value = False
        CheckBox2.Enabled = False
    Else
        CheckBox2.Enabled = True
    End If
End Sub

Private Sub CheckBox2_Click()
    If CheckBox2.Value = True Then
        CheckBox1.Value = False
        CheckBox1.Enabled = False
    Else
        CheckBox1.Enabled = True
    End If
End Sub

FOLLOWUP

Thanks for the fast update! what is the difference between a checkbox and option button? I thought they do the same thing? – user1204868 48 secs ago

Excel VBA Option Buttons (Also known as radio buttons) are the same as Check Boxes except that Option Buttons are dependent on each other while Check Boxes are not. When you check one Option Button the other Option Button will automatically get unchecked.

See the snapshot below on how they look :)

Would recommend seeing the Excel's inbuilt VBA help for more details ;)

SNAPSHOT:

enter image description here

HTH

Sid

share|improve this answer
Thanks for the fast update! what is the difference between a checkbox and option button? I thought they do the same thing? – user1204868 Mar 20 '12 at 9:01
ok.. but please do not remove the answers for the checkbox.. I think it will benefit others too! :) – user1204868 Mar 20 '12 at 9:03
Post updated above :) – Siddharth Rout Mar 20 '12 at 9:07
Hi thanks! I will have a look at how the option button works! For now, the deselecting is good enough! – user1204868 Mar 20 '12 at 9:18
+1 dependent checkboxes should really be option buttons instead. – JimmyPena Mar 20 '12 at 15:11
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.