I have two columns, one has text values and another with has corresponding Yes/No text values.
In another column I'd like to list the values of the first column if the answer in the adjacent column is "no". How would I go about doing this without spaces being in the "Yes" items? I can't figure out the IF/then logic.
This is for a form so I need it to do this automatically.
Example:
| Item | | Is Fruit? | | List of Fruit |
Apples Yes Apples
Oranges Yes Oranges
Broccoli No Peaches
Carrots No
Peaches Yes
I do not want:
| Item | | Is Fruit? | | List of Fruit |
Apples Yes Apples
Oranges Yes Oranges
Broccoli No [BLANK]
Carrots No [BLANK]
Peaches Yes Peaches