Skip to main content
Solved

Adding x IF Yes/No box is checked

  • June 16, 2020
  • 4 replies
  • 24 views

Hello! I am having trouble creating a formula to calculate my service fee.

Our fee is 10% of the order total (min fee $10, max $25.) We charge and extra $20 IF the order is for delivery.

Please Help!!

Best answer by Rey_Crisostomo

Hey Rey. Here is a screenshot!


Try this formula:
MIN(MAX(({Total} * .1), 10.0), 25.0) + IF({Delivery?} = 1, 20.0, 0.0)

4 replies

Please give the column names and type that are available in the table where you want the formula column to added.


  • Author
  • New Participant
  • June 16, 2020

Hey Rey. Here is a screenshot!


Hey Rey. Here is a screenshot!


Try this formula:
MIN(MAX(({Total} * .1), 10.0), 25.0) + IF({Delivery?} = 1, 20.0, 0.0)


  • Author
  • New Participant
  • June 16, 2020

Try this formula:
MIN(MAX(({Total} * .1), 10.0), 25.0) + IF({Delivery?} = 1, 20.0, 0.0)


You are the man, REY!