Hi,
I want to take demographic data from 11 columns and translate that to a multi-select column.
I want my column "Original Demo Contains" to change dependent on the data in the 11 columns following it.
- If the value of any of the 11 "Original Demo - Caucasian", "Original Demo - African Amerian", etc columns is greater than 0, I want the corresponding selection in the Multi-Select Drop-Down "Original Demo Contains" to be selected.
The issue I'm finding is that if I do an =IF( formula and write out my statement, only the first command takes place on the column. So, if I do the below formula, only "Caucasian" is selected from the Multi-Select.
=IF([Original Demo - Caucasian]@row > 0, "Caucasian", IF([Original Demo - African American]@row > 0, "African American", IF([Original Demo - Hispanic]@row > 0, "Hispanic", IF([Original Demo - Asian]@row > 0, "Asian", ""))))
I read about the (char10) command, and I've tried employing ORs and ANDs but to no avail. Any tips?