Here are the criteria:
- 3 different [Package Size]
- each [Package Size] has a different fee
- fees are calculate after 60 days after [Date Received]. On the 61st day, the fee begins.
- fees are charged daily, and up to a max of 30 consecutive days.
In for the formula below, on 61 days the fee should be $0.50, then at 90 days it should accrued to $15, instead it calculates a total of only $0.50 when the [Date Received] was in 2017.
var number DaysOverDue = Min(90, ToDays(Today()-[Date Received]));
If(([Package Size]="Light" or [Package Size]="Regular") and ($DaysOverDue>60),($DaysOverDue-60),0.5)
And how do I add another If package size to the formula?