Oct 23, 2022 08:33 AM
Hi, I’m trying to make a formula if a checkbox is tiped:
If checkbox is tiped than calculate the price by multiplying a value in column A by another value in columbn B and show the result in column C.
I could have something but the result shown was “error” when the checkbox was untiped…
Thanks a lot for your help !
Oct 23, 2022 12:27 PM
Hey @Karim_Younan!
Here’s a quick formula that appears to fit your requirements.
IF(
{Checkbox},
({Initial Value} * {Value To Multiply By})
)
Here’s a look at the formula’s behavior:
Oct 23, 2022 01:36 PM
Great, thanks a lot !