Hello Community
I created a form with multiple drop down options. I need to parse out those options so each one shows in a separate cell. I figured out the first one but cannot find the correct formula for the second, third cells, etc. Any help is appreciated.
Below is the formula i used to parse out the first item (thanks to Paul H who answered on a different post), which works.
=IF(FIND(CHAR(10), [DIVISION]@row) > 0, LEFT([DIVISION]@row, FIND(CHAR(10), [DIVISION]@row, 1) - 1), [DIVISION]@row)