Jan 10, 2024 12:26 PM
I have a formula that calculates a 2.99% but since January 1 is 2.29%. Actual formula: ({Total due}-(2.99*{Total due})/100)+{Manual Rate}
I have a column: Date Booked
Jan 10, 2024 07:59 PM
I am trying my best but is not working:
Jan 10, 2024 09:54 PM
I am so desperate, I can not find a way to make it work. right now is only giving me the 2.29% result and the 2.99% is empty:
IF(
{Date Booked},
IF(
IS_AFTER(
{Date Booked},
DATETIME_PARSE(
'31/12/2023',
'DD/MM/YYYY'
)
),
({Total due}-(2.29*{Total due})/100)+{Manual Rate}),
IF(
IS_BEFORE(
{Date Booked},
DATETIME_PARSE(
'31/12/2023',
'DD/MM/YYYY'
)
),
({Total due}-(2.99*{Total due})/100)+{Manual Rate})
)
Jan 11, 2024 05:56 PM
Any help, please?