Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
I have a date for example 23/10/07 then I have a contract length let say 18. I need to add that to the date and if the new date is less than the current date I need a cell to dispaly Out contract Many thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Contract start date In A2 Length of contract in months in B2 This in C2 =IF(DATE(YEAR(A2),MONTH(A2)+B2,DAY(A2))<TODAY(),"O ut of Contract","") Mike "millwalll" wrote: Hi all, I have a date for example 23/10/07 then I have a contract length let say 18. I need to add that to the date and if the new date is less than the current date I need a cell to dispaly Out contract Many thanks |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi thanks dont supose you could explain it to me of what each bit does thanks
"Mike H" wrote: Hi, Contract start date In A2 Length of contract in months in B2 This in C2 =IF(DATE(YEAR(A2),MONTH(A2)+B2,DAY(A2))<TODAY(),"O ut of Contract","") Mike "millwalll" wrote: Hi all, I have a date for example 23/10/07 then I have a contract length let say 18. I need to add that to the date and if the new date is less than the current date I need a cell to dispaly Out contract Many thanks |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
=IF(DATE(YEAR(A2),MONTH(A2)+B2,DAY(A2))<TODAY() ,"Out of Contract" ,"") The formula has 3 parts which are split above onto 3 lines. Part 1. Adds the value in B2 in months to the date in A2 and checks if is earlier (<) than today. You can do a simple mathmatical < comparison with dates because they are actually stored as numbers. Change the format of a cell with a date in to general and see what happens. Part 2 is what to display if part 1 is TRUE Part 3 is what to do if part 1 is false which in this case is "" or nothing. Mike "millwalll" wrote: Hi thanks dont supose you could explain it to me of what each bit does thanks "Mike H" wrote: Hi, Contract start date In A2 Length of contract in months in B2 This in C2 =IF(DATE(YEAR(A2),MONTH(A2)+B2,DAY(A2))<TODAY(),"O ut of Contract","") Mike "millwalll" wrote: Hi all, I have a date for example 23/10/07 then I have a contract length let say 18. I need to add that to the date and if the new date is less than the current date I need a cell to dispaly Out contract Many thanks |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks
"Mike H" wrote: Hi, =IF(DATE(YEAR(A2),MONTH(A2)+B2,DAY(A2))<TODAY() ,"Out of Contract" ,"") The formula has 3 parts which are split above onto 3 lines. Part 1. Adds the value in B2 in months to the date in A2 and checks if is earlier (<) than today. You can do a simple mathmatical < comparison with dates because they are actually stored as numbers. Change the format of a cell with a date in to general and see what happens. Part 2 is what to display if part 1 is TRUE Part 3 is what to do if part 1 is false which in this case is "" or nothing. Mike "millwalll" wrote: Hi thanks dont supose you could explain it to me of what each bit does thanks "Mike H" wrote: Hi, Contract start date In A2 Length of contract in months in B2 This in C2 =IF(DATE(YEAR(A2),MONTH(A2)+B2,DAY(A2))<TODAY(),"O ut of Contract","") Mike "millwalll" wrote: Hi all, I have a date for example 23/10/07 then I have a contract length let say 18. I need to add that to the date and if the new date is less than the current date I need a cell to dispaly Out contract Many thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Date question | Excel Discussion (Misc queries) | |||
Date Question | Excel Programming | |||
Date Question | Excel Discussion (Misc queries) | |||
Date question | Excel Programming | |||
date question | Excel Programming |