I want to Checkbox and then have a cell show a number or not

My formula is this: =IF(C4>=A4/3.5,0,IF(C4<A4/3.5,A4))
Want to check box in E3 and have F4 perform the shown calculation. If the box is not checked I want F4 to display nothing or Zero.
How can this be done?
Base
Product
Start
CheckBox
Add
24
Bubble Gum
24
0
24
Taffy
24
0
24
ZoomZooms
24
0
24
WhamWhams
24
0
24
Zonkers
24
0

Hi blkrocket,
Your screenshot does not show column labels, but I think this is what you want:
E2 (and copied down)
=IF(D2,IF(C2>=A2/3.5,0,A2),0)
Two nested IF formulas.
The first IF looks to see if the checkbox in D is "TRUE".
Is so, execute the second IF, else E becomes 0
The second IF looks to see if C>=A/3.5
If so, E becomes 0, else E becomes A
I hope I have understood your aim.
Regards,
Ian.

Similar Messages

Maybe you are looking for