i want to base a formula off whether a checkbox is filled in

G

Guest

I want to use a check box and have it to base formulas i.e. if the checkbox
is filled in use this formula if notr use that formula how do i do this??
 
D

Dave Peterson

Use a linked cell.

Then you can use a formula like:

=if(a1=true,firstformulahere,secondformulahere)

(A1 was my linked cell.)
 
G

Guest

=IF(A1=TRUE,"box is checked","box is NOT checked")
edit A1 to where your checkbox is and the comments
btw
TRUE = box is checked
FALSE = box is NOT checked
 
G

Guest

=IF(A1=TRUE,Formula if box IS checked,Formula if NOT checked)
sorry, overlooked that you needed to add formulas...
 

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