Jul 22, 2019 04:44 AM
Hey,I am looking for some help with a formula I am working on.
I’m trying to achieve the below statement.
IF {role} = “HOT” OR “BUS” AND {payment method}= “Checkout”, then ({Total Payment Received}*0.0275+0.75) ELSE 0
THE {role} within my formula is a “linked” field so I am unsure if that is causing an issue?
Any help would be really appreciated.
Thanks
Jul 22, 2019 11:02 AM
HI @Harrison_Jones - this is what you need:
IF(
AND(
OR({role} = 'BUS', {role} = 'HOT'),
{payment method}= 'Checkout'
),
({Total Payment Received} * 0.0275) + 0.75,
0
)
Format the formula column to be integer or decimal as you require.
JB
Jul 22, 2019 08:47 PM
JB you are a HERO!!!
Thank you so much.