If Formula

  • Thread starter Thread starter loomie
  • Start date Start date
L

loomie

Can anyone help me out with a formula that would do the following in excell:


If date X = to or less than date X, result shows overdue
 
Hi,

With dates in a1 & B1 try this

=IF(A1>=B1,"Overdue","")

or to compare a date to todays date

=IF(TODAY()>=B1,"Overdue","")

Mike
 
Change the cell addresses of A1 and B1 to your date value cells:

=IF(A1<=B1,"Overdue","")
 

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