How to create (Yes/NO) check boxes in Excel cells?

E

Eric

Does anyone have any suggestions on how to create (Yes/NO) check boxes in
Excel cells? With data validation on selection, if yes is clicked, then no
will be unclicked automatically, if no is clicked, then yes will be unclicked
automatically.
Does anyone have any suggestions
Thanks in advance for any suggestions
Eric
 
H

HelpExcel.com

Eric,

You can do a Yes/No data validation in a single cell, but it sounds like you
want to have Yes in one cell and No in another. If this is the case, you can
use a spreadsheet change event to monitor when the Yes or No selection has
changed. I'm also unclear on the distinction between whether you want to use
checkboxes or data validation or a combination of both.
 
H

HelpExcel.com

Eric,

You can do a Yes/No data validation in a single cell, but it sounds like you
want to have Yes in one cell and No in another. If this is the case, you can
use a spreadsheet change event to monitor when the Yes or No selection has
changed. I'm also unclear on the distinction between whether you want to use
checkboxes or data validation or a combination of both.
 
J

JBeaucaire

You can do it with check boxes, but it's much harder to code and Excel has a
builtin function for this already.... Option Buttons.

If you add Option Buttons in pairs from the Control Toolbox toolbar, click
on Properties and set them to a GROUP of their own name for each pair.

Option buttons only allow one item in the "group" to be selected at a time.
 
J

JBeaucaire

You can do it with check boxes, but it's much harder to code and Excel has a
builtin function for this already.... Option Buttons.

If you add Option Buttons in pairs from the Control Toolbox toolbar, click
on Properties and set them to a GROUP of their own name for each pair.

Option buttons only allow one item in the "group" to be selected at a time.
 
E

Eric

Thank everyone very much for suggestions
Could you please tell me how to add option buttons in pairs from the Control
Toolbox toolbar?
Thank anyone very much for any suggestions
Eric
 
E

Eric

Thank everyone very much for suggestions
Could you please tell me how to add option buttons in pairs from the Control
Toolbox toolbar?
Thank anyone very much for any suggestions
Eric
 
D

Dave Peterson

Add a couple of optionbuttons from the control toolbox toolbar.
Rightclick on each and show the property dialog
Each optionbutton in the same group will have to have its own unique GroupName

If you used optionbuttons from the Forms toolbar, you could put each
optionbutton in the group in a GroupBox (also on that Forms toolbar).
 
D

Dave Peterson

Add a couple of optionbuttons from the control toolbox toolbar.
Rightclick on each and show the property dialog
Each optionbutton in the same group will have to have its own unique GroupName

If you used optionbuttons from the Forms toolbar, you could put each
optionbutton in the group in a GroupBox (also on that Forms toolbar).
 

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