Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ok, I need a formula to give me a summed date based on the rank
ex. if rank=1 then due date = start date + 5 if rank=2 then due date = start date + 3 if rank=3 then due date = start date + 1 Date Started(A) Rank(D) Due Date (E) 5/10/06 1 5/15/06 5/08/06 2 5/11/06 5/9/06 3 5/10/06 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=A2+CHOOSE(D2,5,3,1)
Regards Trevor "Hakojin" wrote in message ... Ok, I need a formula to give me a summed date based on the rank ex. if rank=1 then due date = start date + 5 if rank=2 then due date = start date + 3 if rank=3 then due date = start date + 1 Date Started(A) Rank(D) Due Date (E) 5/10/06 1 5/15/06 5/08/06 2 5/11/06 5/9/06 3 5/10/06 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Try =IF(B1 = 1,A1+5,IF(B1 = 2,A1+3,IF(B1 = 3,A1+1,""))) in cell C1 -- mrice Research Scientist with many years of spreadsheet development experience ------------------------------------------------------------------------ mrice's Profile: http://www.excelforum.com/member.php...o&userid=10931 View this thread: http://www.excelforum.com/showthread...hreadid=544466 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
worked perfect, thank you very much.
"Trevor Shuttleworth" wrote: =A2+CHOOSE(D2,5,3,1) Regards Trevor "Hakojin" wrote in message ... Ok, I need a formula to give me a summed date based on the rank ex. if rank=1 then due date = start date + 5 if rank=2 then due date = start date + 3 if rank=3 then due date = start date + 1 Date Started(A) Rank(D) Due Date (E) 5/10/06 1 5/15/06 5/08/06 2 5/11/06 5/9/06 3 5/10/06 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You're welcome. Thanks for the feedback
"Hakojin" wrote in message ... worked perfect, thank you very much. "Trevor Shuttleworth" wrote: =A2+CHOOSE(D2,5,3,1) Regards Trevor "Hakojin" wrote in message ... Ok, I need a formula to give me a summed date based on the rank ex. if rank=1 then due date = start date + 5 if rank=2 then due date = start date + 3 if rank=3 then due date = start date + 1 Date Started(A) Rank(D) Due Date (E) 5/10/06 1 5/15/06 5/08/06 2 5/11/06 5/9/06 3 5/10/06 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Total or Count based on multiple conditions | Excel Discussion (Misc queries) | |||
Add cells from a range based on 2 conditions from 2 other ranges | Excel Worksheet Functions | |||
SUM based on multiple conditions - SORRY, URGENT!!! | Excel Worksheet Functions | |||
Create a total based on multiple conditions is not giving correct. | Excel Worksheet Functions | |||
SUMIF based on 2 conditions | Excel Worksheet Functions |