Hello
I have a question any help would be appreciated.
In column A I have around 1500 dates and in column B also,and I want to make
column C that will have differences in years for every row.How can i do
that?
Use the function YEAR
E.g. formula in C column can look like this:
=IF(YEAR(A1)<>YEAR(B1);"different";"the same")
or
=IF(YEAR(A1)>=YEAR(B1);YEAR(A1)-YEAR(B1);YEAR(B1)-YEAR(A1))