Help with IF statement and dates

B

BAM

I need some help on writing an if statement that would do the following

IF today's date is equal to or between a specific start date and specific
finish date (referenced in other cells), enter "underway" in the cell. IF
today's date is before the start date, enter "planning." If today's date is
after the finish date enter "completed."

Thanks in advance for any help,

BAM
 
R

Roger Govier

Hi
With Start date in A1 and End date in B1
=IF(TODAY()<A1,"Planning",IF(TODAY()>B1,"Completed","Underway"))
 
F

FloMM2

Bam,
Try this:
Cell A1 is "Today's Date" without ""
Cell B1 is "Start Date" without ""
Cell C1 is "Finish Date" without ""
Format Cells A1, B1, C1 as mm/dd/yy

In Cell A2 type "=NOW()" without ""
In Cell B2 type start date
In Cell C2 type finish date

In Cell B3 type "=IF((A2=B2)*OR(B2<A2<C2),"underway","planning")" without
the first " or last "

hth :)
 

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

Top