S Sarah Feb 22, 2008 #1 I would like to find a function that will take the date in one column and tell me what date is 4 months after that date - any thoughts
I would like to find a function that will take the date in one column and tell me what date is 4 months after that date - any thoughts
T Tyro Feb 22, 2008 #3 If your date is in A1 then =EDATE(A1,4) might do what you want. You will need to have the Analysis Tookpak installed for versions of Excel prior to 2007. EDATE is documented in help under date functions. Tyro
If your date is in A1 then =EDATE(A1,4) might do what you want. You will need to have the Analysis Tookpak installed for versions of Excel prior to 2007. EDATE is documented in help under date functions. Tyro
N Niek Otten Feb 22, 2008 #4 =DATE(YEAR(A1),MONTH(A1)+4,DAY(A1)) -- Kind regards, Niek Otten Microsoft MVP - Excel |I would like to find a function that will take the date in one column and | tell me what date is 4 months after that date - any thoughts
=DATE(YEAR(A1),MONTH(A1)+4,DAY(A1)) -- Kind regards, Niek Otten Microsoft MVP - Excel |I would like to find a function that will take the date in one column and | tell me what date is 4 months after that date - any thoughts
P Pete_UK Feb 22, 2008 #5 Another way which doesn't need the ATP: =DATE(YEAR(A1),MONTH(A1)+4,DAY(A1)) Hope this helps. Pete