Hi All
I am trying to spilt a multi select drop down column into two individual columns -
I have tried several options but just cannot get them working
=IF(ISERROR(FIND(",", [Survey Type]@row)), [Survey Type]@row, LEFT([Survey Type]@row, FIND(",", [Survey Type]@row) - 1))
=LEFT([Survey Type]@row, FIND(",", [Survey Type]@row + ",") - 1)
=MID(A1, 1, FIND(",", A1) - 1)