I have a cell that contains 1-1-2011. (CalculationData!$A$12)
I have a list of employees where there is a column that lists their hire date. (in the example below L2)
I have a column where I need to show where they are currently at with respect to their anniversary date for the current year. In this column, I have the following formula. It seems to work for more tenured people, but not so much for people with less than 1 year or just having passed the 1 year mark.
=IF(D2="Active",DATEDIF(L2,CalculationData!$A$12,"y"),"none")
Example: One person's hire date was 1-25-10. The result in her anniversary column is 0; where it should be 1.
Solutions are appreciated.
I have a list of employees where there is a column that lists their hire date. (in the example below L2)
I have a column where I need to show where they are currently at with respect to their anniversary date for the current year. In this column, I have the following formula. It seems to work for more tenured people, but not so much for people with less than 1 year or just having passed the 1 year mark.
=IF(D2="Active",DATEDIF(L2,CalculationData!$A$12,"y"),"none")
Example: One person's hire date was 1-25-10. The result in her anniversary column is 0; where it should be 1.
Solutions are appreciated.