Find (Today-21) in a range of dates

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

Guest

I need to write a formula which will search a range of cells containing dates
and if any of those is greater than todays date less 21 days, then return the
text "not due".

This is for a customer data base which has home page showing all customers,
and subsequent pages for indvidual customers. As contact dates are added for
each customer on their own sheets, then the home page should show if they are
due (or overdue) for a call
 
=IF(MAX(rng)>(TODAY()-21),"not due","due")

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Thanks Bob, I should have said that I need the formula to indentify
individual named sheets, ie Smith. How do include that please.
 
=IF(MAX(Smith!rng)>(TODAY()-21),"not due","due")


--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Thanks Bob,

It worked fine

Cheers

Jim

Bob Phillips said:
=IF(MAX(Smith!rng)>(TODAY()-21),"not due","due")


--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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