Service Charge Formula

  • Thread starter Thread starter lastevens
  • Start date Start date
Sure, but there are myriad ways to do that. one way:

Assume amount in A2, due date in B2, periodic interest rate in J1.
Further assume that interest is due after 30 days, and accrues each 30
days...

=ROUND(A2*(1+$J$1)^INT((TODAY()-B2-1)/30),2)
 
Back
Top