This should do what you need:
IF(
{Booked By} = 2,
{Points Paid} * 0.04
)
This should do what you need:
IF(
{Booked By} = 2,
{Points Paid} * 0.04
)
Thank you so much, it did. I feel so dumb with these formulas, I don't use them enough to ever get deep enough into figuring them out.
This should do what you need:
IF(
{Booked By} = 2,
{Points Paid} * 0.04
)
So now I am going wild and want to elaborate on this, I have added more possibilities to -
IF(
{Booked By} = 2,
{Points Paid} * 0.04
)
I want to put a few so
IF booked by 2 points paid is 0.04 OR
IF booked by 1 points paid is 0.03 OR
IF booked by 0 points paid is 0.00
How can I add on, have tried what I think but they just give errors. Thanks in advance.