Check Box included in a formula

C

Corey

Is it possible to include a Check Box result into a calculation ?
EG,
=IF(checkbox="TICK",V35,IF(checkbox="",0))

Corey....
 
B

Bearacade

Go into Design mode, right click on your check box and open properties.
Enter a cell in LinkedCell field, A1 for example

Now put this in your formula:

=IF(A1=True, V35, 0)
 
Top