How do I change this to count days

H

H Halliburton

I recieved help yesterday on my "IF" problem but I forgot the fact that if a
pymt is paid a month later it isn't calculating. Here is what I got
yesterday for a fix late fee;

=IF(OR(B7="",DAY(B7)>=27),43.75,0)

Column A has date pymt due
Column B has date pymt paid
Column F has the late fee


Here is what a friend and I came up with for a per day late fee

=IF((B18-A18)>=5,E18*0.05+(B18-A18-5)*E18*0.01,0)

The problem is again is that I need both formulas to reconize complete dates.

Example,

Column A - Date payment is due is 3-22-08
Column B - Date payment is made is 5-20-08

Thank you for your time and assistance.
 
S

Sean Timmons

Make it easy. If you want to find number of days late, then do:

=(If(payment date - due date)>0,(payment date - due date)*per-day charge,0)

Sounds like maybe you charge different late fees based on length of time
late? If so, just add that as a nested if.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top