I have a multiple select field {Services} with entries like:
CIQ
COR SKED
CNL
DLA
TECH STOP
etc.
Since it is multiple select, they can be combined in one record, so many combinations are possible.
I want to use the SWITCH() function to apply to this field and produce a result depending on contents like:
SWITCH(
{Services},
MID({Services}, FIND(“CIQ”, Services), 3), “CIQ”,
MID({Services}, FIND(“CNL”, Services), 3), “CNL”,
MID({Services}, FIND(“COR SKED”, Services), , “COR”).
Oddly, I receive error message which I can not find the reason of. Any help and ideas will be greatly appreciated.