Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I work in a reservations department that has certain booking windows. I have
easily created the functions for counting days from today (i.e. =today() + 15) but I can't seem to find the means to count 10 and 13 months from today. If today is 9/14/2005, then 10 months from now is 7/14/2006, and 13 months is 10/14/2006. Your helps is appreciated. |
#2
![]() |
|||
|
|||
![]()
if a date is in A1 then
=DATE(YEAR(A1),MONTH(A1)+13,DAY(A1)) will go forward 13 months -- Gary''s Student "JNW" wrote: I work in a reservations department that has certain booking windows. I have easily created the functions for counting days from today (i.e. =today() + 15) but I can't seem to find the means to count 10 and 13 months from today. If today is 9/14/2005, then 10 months from now is 7/14/2006, and 13 months is 10/14/2006. Your helps is appreciated. |
#3
![]() |
|||
|
|||
![]()
Assume your date is in A1 and you want to calculate 10 months from it:
=DATE(YEAR(A1),MONTH(A1)+10,DAY(A1)) -- Regards, Dave <!-- "JNW" wrote: I work in a reservations department that has certain booking windows. I have easily created the functions for counting days from today (i.e. =today() + 15) but I can't seem to find the means to count 10 and 13 months from today. If today is 9/14/2005, then 10 months from now is 7/14/2006, and 13 months is 10/14/2006. Your helps is appreciated. |
#4
![]() |
|||
|
|||
![]()
Worked perfectly. Thanks to both of you.
"JNW" wrote: I work in a reservations department that has certain booking windows. I have easily created the functions for counting days from today (i.e. =today() + 15) but I can't seem to find the means to count 10 and 13 months from today. If today is 9/14/2005, then 10 months from now is 7/14/2006, and 13 months is 10/14/2006. Your helps is appreciated. |
#5
![]() |
|||
|
|||
![]() try =DATE(YEAR(D4),MONTH(D4)+10,DAY(D4)) =DATE(YEAR(TODAY()),MONTH(TODAY())+13,DAY(TODAY()) ) -- Don Guillett SalesAid Software "JNW" wrote in message ... I work in a reservations department that has certain booking windows. I have easily created the functions for counting days from today (i.e. =today() + 15) but I can't seem to find the means to count 10 and 13 months from today. If today is 9/14/2005, then 10 months from now is 7/14/2006, and 13 months is 10/14/2006. Your helps is appreciated. |
#6
![]() |
|||
|
|||
![]()
Try the EDATE function =EDATE(TODAY(),13)
"JNW" wrote: I work in a reservations department that has certain booking windows. I have easily created the functions for counting days from today (i.e. =today() + 15) but I can't seem to find the means to count 10 and 13 months from today. If today is 9/14/2005, then 10 months from now is 7/14/2006, and 13 months is 10/14/2006. Your helps is appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Seed numbers for random number generation, uniform distribution | Excel Discussion (Misc queries) | |||
Why "datedif" function results sometimes negative numbers? | Excel Worksheet Functions | |||
sum values between today and 6 months prior | Excel Worksheet Functions | |||
Calculating interest on number of days in the period | Excel Worksheet Functions | |||
Calculating for number of days when values are in dates | Excel Worksheet Functions |