Help

Re: If checkbox V --> calculate price of 2 column

759 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Karim_Younan
4 - Data Explorer
4 - Data Explorer

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 !

2 Replies 2
Ben_YoungV2
5 - Automation Enthusiast
5 - Automation Enthusiast

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:

image

Great, thanks a lot !