Hi,
I need to get a function to produce years, months and days from a given Start Date up till Today.
Here is what I've come up with so far - the years and days arre working fine:
Years =YEAR(TODAY())-YEAR($A2)
Days =IF(DAY(TODAY())<DAY(A2),DAY(DATE(YEAR(A2),MONTH(A2)+1,DAY(1))-1)+DAY(TODAY())-DAY(A2),DAY(TODAY())-DAY(A2))
Months - this is the one that's wrong!! It returns FALSE if the Start Date's month is less than TODAY's month (month being Jan = 1, Feb = 2 etc. regardless of year)
=IF(MONTH(TODAY())<MONTH(A7), IF(DAY(TODAY())<DAY(A7),12-MONTH(A7)+MONTH(TODAY())-1,12-MONTH(A7)+MONTH(TODAY())),IF(MONTH(TODAY())>MONTH(A7),IF(DAY(TODAY())<DAY(A7),MONTH(TODAY())-MONTH(A7)-1),IF(DAY(TODAY())>DAY(A7),MONTH(TODAY())-MONTH(A7))))
Can anyone help me?
Also, if you know of a function I have not used that would be easier - please tell me!
Thanks
Louise