Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I am trying to set up If Statements to read dates for several projects and
from those dates set priority levels of A, B, C, etc... Can anyone offer assistance? |
#2
![]() |
|||
|
|||
![]()
Try something like:
=IF(B1=DATE(2005,1,1),"A",IF(B1=DATE(2005,1,2),"B" ,"C")) ---- Regards, John Mansfield http://www.pdbook.com "K Svoboda" wrote: I am trying to set up If Statements to read dates for several projects and from those dates set priority levels of A, B, C, etc... Can anyone offer assistance? |
#3
![]() |
|||
|
|||
![]()
Is there an easy way if you are looking at 30 different projects over the year?
"John Mansfield" wrote: Try something like: =IF(B1=DATE(2005,1,1),"A",IF(B1=DATE(2005,1,2),"B" ,"C")) ---- Regards, John Mansfield http://www.pdbook.com "K Svoboda" wrote: I am trying to set up If Statements to read dates for several projects and from those dates set priority levels of A, B, C, etc... Can anyone offer assistance? |
#4
![]() |
|||
|
|||
![]()
One way:
assuming the due date in A1: =IF((A1-TODAY())<=0,"HOT",IF((A1-TODAY())=1,"Short-Term","Long-Term")) In article , K Svoboda <K wrote: I am trying to set up If Statements to read dates for several projects and from those dates set priority levels of A, B, C, etc... Can anyone offer assistance? |
#5
![]() |
|||
|
|||
![]()
If you have more than 3 levels you might want to consider a vlookup table
=VLOOKUP(B1,F3:G8,2) where for instance F3:F8 would hold the dates and G3:G8 the priority levels where the table might look like 1/1/2005 A 1/2/2005 B 1/3/2005 C 1/4/2005 D 1/5/2005 E Regards, Peo Sjoblom "K Svoboda" wrote: I am trying to set up If Statements to read dates for several projects and from those dates set priority levels of A, B, C, etc... Can anyone offer assistance? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
grouping dates by week/month/etc. on cat. axis | Charts and Charting in Excel | |||
Ploting dates against a calendar and not as a simple events | Charts and Charting in Excel | |||
Filtering with dates | Excel Discussion (Misc queries) | |||
IF Statement with Average Function results in #Value! | Excel Discussion (Misc queries) | |||
Dates in spreadsheets | Excel Discussion (Misc queries) |