I'm not familiar with the term you are using. Are you wanting to add X
months and Y years to their Date of Birth to get a date sometime in the
future? The "If" statements are not a calculation but merely text
returned for visual purposes. You will need to work with real numbers.
One way is to have two cells, one returning years, and one returning
months. You can use the If statement in both just leave in the numbers.
example for months would be
=IF(B28<=1937,0,IF(B28=1938,2,IF(B28=1939,4,IF(B28=1940,6,IF(B28=1941,8,IF(B28=1942,10,IF((1943<=B28)*(B28<=1954,0,IF(B28=1955,2,0))))))))
Do the same for the year, stripping out the text, then you have real
numbers to work with that you can add to the Month year part of the
Birthday.