Worksheet functions

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I create a function that will add an amount according to the date?
Like a late fee?
 
If you are asking for a way to calculate a late fee, here's one way:

A1: $100 (Invoice Amt)
B1: 05/25/2005 (Due Date)
C1: =IF(TODAY()-B1>10,A1*5%,0) (Late fee: in this case $5)

Does that get you on the right path?
 
Back
Top