Hello Community
I have a multi select column whereby I'd like to be able to get at the first value in the list, regardless of how many items were selected. However, I can't seem to get the correct syntax to get this to work.
In the column titled "First Value", have the column formula
=MID([Estimated Availability]@row, 1, FIND(CHAR(10), [Estimated Availability]@row))
In the column titled "Char10 Pos Found" I have the column formula
=FIND(CHAR(10), [Estimated Availability]@row, 1)
But notice how instead of parsing out the first value, it's returning the 2nd value in a multi select. What am I doing wrong? Thanks!