quick question on a checkbox

  • Thread starter Thread starter eluehmann
  • Start date Start date
E

eluehmann

I am fairly new at this... and my VB with excel book is in the mail :(


Here is my question. I have a sheet that has a checkbox on it.
would like to have a value in another cell change given the checkbox i
checked/unchecked.

Here is the logic (this may also be able to be done outside of VB):

If checkbox1 is checked, cell A1 should read:"check box is checked"

If checkbox1 is not checked cell A1 should read:"check box is no
checked"

I know this is easy but I have not good reference for now. Any help i
appreciated.

-Eri
 
link the checkbox to the cell underneath it. For a control toolbox toolbar
checkbox, this can be done in the properties window using the linked cell
propert: Sheet1!C1 (Assume the checkbox is above C1)

in A1 you would have a formula

=if(C1,"Checkbox is checked","Checkbox is unchecked")
 

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