Perfect. So for this situation, let’s assume that you have the following fields;
- Start Date
- Due Date
- Interest PRIOR to Due Date
- Interest AFTER Due Date
- Amount Owing
Your formula would read;
IF(DATETIME_DIFF(TODAY(),{Start Date},'months')>= 4,(({Amount Owing}*{Interest Rate AFTER Due Date})+{Amount Owing}),(({Amount Owing}*{Interest Rate Prior to Due Date})+{Amount Owing}))
So to reiterate, this formula does the following;
- if the balance owing is $0.00 as of today, it displays $0.00
- if there is a balance owing, and;
- the date is greater than 4 months, it calculates the new interest
- the date is still less than 4 month, it calculates based on the original interest.
Here’s a base to demonstrate.
Hope this helps.
Nathalie