A daily computation formula?

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

Guest

Is there a way to create a formula that adds "1" to a number every passing day?
I have a spreadsheet that I use to calculate how late a company is on paying invoices, and I want to have a column that shows how many days past due an invoice is.

Can this be done? CAN excel operate a forula that automatically calculates each passing day?
please reply! Thanks!

Jimmy
 
Look at the today function

A1 holds the due date, B1 holds either "Paid" or empty then this formula
will tell you
how many days behind

=IF(B1="Paid","Paid","Vendor X is
"&TEXT(IF(A1<TODAY(),TODAY()-A1,0),"General")&" day(s) past due date")

--

Regards,

Peo Sjoblom


Jim Hutchison said:
Is there a way to create a formula that adds "1" to a number every passing day?
I have a spreadsheet that I use to calculate how late a company is on
paying invoices, and I want to have a column that shows how many days past
due an invoice is.
 

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

Back
Top