I am trying to fill a new column with String values based on another column (ie the logic). In Excel, I would build a reference table and do a lookup. For arguments sake, lets say i have a list of individual food items:
| Item | Meal (new column) |
| Bacon | |
| Eggs | |
| Sandwich | |
| Steak | |
I want to write a formula to assign the meal. I can get it to run on one item using the following assigned to my new meal column:
IF ([Item] = "Bacon") THEN "Breakfast" Else "Bacon" ENDIF
Entering the name in the new column for failures will help identify when the rules need updating...I just can't figure out how to get all of the rules in one spot.
Thanks
Gio