I have this formula
=IF(DATEDIF($C7; H$3; "y")=0; "";
IF(DATEDIF($C7; H$3; "y")=1; "1 year";
DATEDIF($C7; H$3; "y") & " years")) &
IF(DATEDIF($C7; H$3; "ym")=0; "12 months";
IF(DATEDIF($C7; H$3; "ym")=12; "; 12 months";
IF(DATEDIF($C7; H$3; "ym")=1; "; 1 month";
"; " & DATEDIF($C7; H$3; "ym") & " months")
)
)
is there a fix to say 17 years; 12 months after 17 years; 11 months instead of 18 years; 12 months?


I don't know why all delimiters in your formula are
;(e.gDATEDIF($C7; H$3; "y")). It should be,on Excel or GoogleSheet.Following formula is tested on Excel 365.
LETformula is easier to understand and maintain.