How do I name a range of dates?

G

Guest

How do I name a range of dates and then use that in a conditional formula.
For example:

If Today's date falls between 12/30/05 through 2/10/06, Today is in Period 1.

Thanks
 
B

Bob Phillips

Is the range of dates every date between those tow? If so, just use

=IF(ISNUMBER(MATCH(TODAY(),mydates,0)),"Period 1","")

If you just have the two dates, test them

=IF(AND(TODAY()>=A1,TODAY()<=A2),"Period 1","")

--
HTH

Bob Phillips

(replace somewhere in email address with gmail 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

Similar Threads

Date range within a date range 2
Excel Help with dates 2
Count Dates 2
Calculating interest due on late loan payments 1
Find Period Date? 5
Find within Date Range 4
date range 11
Compare dates in two different ranges 1

Top