Add years NOT days

C

Coza

In the following formula, J4 is (dddd dd mmmm yyyy) and H4 is (2)
[Representing Years].
=IF(J4<>"",J4+H4,"")

Currently it ADD's Days, how can i convrt the formula to ADD years ?


Corey....
 
C

Coza

Thanks Max.
Perfect

Max said:
Try:
=IF(J4<>"",DATE(YEAR(J4)+H4,MONTH(J4),DAY(J4)),"")

Coza said:
In the following formula, J4 is (dddd dd mmmm yyyy) and H4 is (2)
[Representing Years].
=IF(J4<>"",J4+H4,"")

Currently it ADD's Days, how can i convrt the formula to ADD years ?


Corey....
 
Top