Jun 28, 2023 11:39 PM
I am trying to create a formula with this information:
If a person who booked the reservation was 2 then it should apply the formula if it was anyone other number then the field should be blank or 0.
- I have created a field for booked by and put number per person
- I have created another field that has :
Jun 29, 2023 02:56 AM
This should do what you need:
IF(
{Booked By} = 2,
{Points Paid} * 0.04
)
Jun 29, 2023 02:59 AM
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.
Aug 03, 2023 12:13 AM
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.