Hi @altercat,
Based on your screenshot, you need to remove the space between the 'ELSE' and 'IF', so it will become 'ELSEIF'.
This is because with the space, the 'IF' would need to be followed by 'THEN', 'ELSE' and 'ENDIF'
Hope this helps.
Cheers,
Lelia
ELSEIF is one word, not two
To be more precise, you have this :
ELSE IF [Year of Birth] > 1981 THEN "Millenials"
You can do this:
ELSEIF [Year of Birth] > 1981 THEN "Millenials"
or (maybe, I haven't tried it for a long time), this :
ELSE IF [Year of Birth] > 1981 THEN "Millenials" ELSE null() ENDIF