Re: $$Excel-Macros$$ Calculate years and months between today daye and given date

2012-11-06 Thread excel lerner
Thanks for your help. Every solution is working and fine. Thanks once again friends -- Join official facebook page of this forum @ https://www.facebook.com/discussexcel FORUM RULES (1120+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poor thread titles, like Ple

Re: $$Excel-Macros$$ Calculate years and months between today daye and given date

2012-11-05 Thread Paul Schreiner
$Excel-Macros$$ Calculate years and months between today daye and given date Hi, use this  =DATEDIF(A2,TODAY(),"y")&" Years "& "and "&DATEDIF(A2,TODAY(),"ym")&" Months"   -- Best Regards, Ms Excel User On Mon, N

Re: $$Excel-Macros$$ Calculate years and months between today daye and given date

2012-11-05 Thread Paul Schreiner
You've asked for the FORMULA, That implies that you don't want to use VBA, but wish to use Excel formulas. Let's say that the date you're checking is in A2, The simple answer is to subtract this year "Year(Today())" >From the year of the of the date in A2 "Year(A2)" giving: YEAR(TODAY())-YEAR(A2)

Re: $$Excel-Macros$$ Calculate years and months between today daye and given date

2012-11-05 Thread Aamir Shahzad
You can use the following formula =YEAR(D4)-YEAR(D3)&" Years"&" "&MONTH(D4)-MONTH(D3)&" Months" Aamir Shahzad On Mon, Nov 5, 2012 at 4:51 PM, Kuldeep Singh wrote: > > Hi, > > You can use *DATEDIF()* formula. > > Regards, > Kuldeep Singh > > > On Mon, Nov 5, 2012 at 5:11 PM, excel lerner wrote:

Re: $$Excel-Macros$$ Calculate years and months between today daye and given date

2012-11-05 Thread Kuldeep Singh
Hi, You can use *DATEDIF()* formula. Regards, Kuldeep Singh On Mon, Nov 5, 2012 at 5:11 PM, excel lerner wrote: > Hello sir > > Can you please explain how to get completd years ,Months bet ween > todays date and pevius year date.example > > 01/04/1954 > 05/11/2012 > > please tell me the formul