Good day all.
I have a formula that currently works:
IF({Course Status}='Retired',"RET-"&CONCATENATE(LEFT({Course Level},1),
{Course Type Coding (from Course Type)},".",{Sequence Number})&"-"&{Course Name},CONCATENATE(LEFT({Course Level},1),{Course Type Coding (from Course Type)},".",{Sequence Number})&"-"&{Course Name})&" "&{Engine Version}
However, I now need to add an additional IF statement to check for Archived:
IF({Course Status}='Retired',"RET-"&CONCATENATE(LEFT({Course Level},1),
IF({Course Status}='Archived(DO NOT DELETE)', “ARC-”&CONCATENATE(LEFT({Course Level},1),
{Course Type Coding (from Course Type)},".",{Sequence Number})&"-"&{Course Name},
CONCATENATE(LEFT({Course Level},1),
{Course Type Coding (from Course Type)},".",{Sequence Number})&"-"&{Course Name})&" "&{Engine Version}
As you can guess, my second IF apparently isn't working.
I get the formula has an error.
Any help would be appreciated.
Sean