Quote:
Originally Posted by ArviLaanemets
Your main problem is, instead of date you have 2 entries with year numbers (integers)
|
Easy to cope with. Supposing there are no years before 1941, say, just check if the "year" in the data ( 1965, say) is smaller than 15000 ( somewhere in 1941), the build a fake date with the DATE function
Code:
=IF(B2>15000;YEAR(B2);YEAR(DATE(B2;1;1)))