• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Need help regarding date formula.

RAFI

Member
Hi all,

i have two dates in two column. in one column i have product receive date SAY 02/25/2010. in another column 02/04/2017. i want to know exactly how many years,months,days gone from 0204/17 since it is received .

thanks
 
Hi
try this
Code:
=DATEDIF(A2, B2, "y") &" years, "&DATEDIF(A2, B2, "ym") &" months, " &DATEDIF(A2, B2, "md") &" days"
 
Back
Top