Display latest date in a column

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

Guest

I need to calculate a date based on the latest invoice date which is listed
in a column. I've tried nested IF statements, but cannot nest enough IF
statements. Any suggestions how I can determine the latest date in a column?

Thanks in advance
 
Hi khuggart

You can use the Max function because dates are numbers
=MAX(H1:H100)
 
Use MAX(A1:A100) where A1:A100 contain your list of dates and that will give
you the latest date.
 
Thank you ... I knew there was an easy way ...

Roger Govier said:
Use MAX(A1:A100) where A1:A100 contain your list of dates and that will give
you the latest date.
 

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