check box

  • Thread starter Thread starter Rusty
  • Start date Start date
R

Rusty

Can two check box's be linked so if one is checked, the other will not be? I need them to toggle back and forth between "repair and replace"
Thank You
 
Hi Rusty,

Why not use option buttons which should do what you want?

---
Regards,
Norman



Can two check box's be linked so if one is checked, the other will not be? I
need them to toggle back and forth between "repair and replace"
Thank You
 
I'm trying to copy a bank form. So I can make changes and print. I want to
print out with the checks mark's.
I don't even need a name for the check box, it will be in the top row
"repair replace"
 
Hi Rusty,

One way:

With two Control Toolbox checkboxes, in the worksheet's code module paste
the following:


Private Sub CheckBox1_Click()
CheckBox2.Value = Not (CheckBox1.Value)
End Sub

Private Sub CheckBox2_Click()
CheckBox1.Value = Not (CheckBox2.Value)
End Sub
 
Can this be done all at once or do I have to do it 2 box's at a time.In
other words I have repair and replace on top, and 2 check box's in each row
down to about 50 or so.
 
Hi Rusty,

You need to set the mutually dependent relationship for each pair of
checkboxes. So, whilst you can reduce the wokload by a sensible naming
strategy and by using the first pair of subs as a template for the
subsequent pairs, your typing fingers are still going to be busy.
 

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