Column [item type] is my raw data, and I used formula function to add an new blank column called [item desc]
However, I want the item desc align up with item type according as below
Item type in (1,7,33) = Domestic
item type in (13,25) = DSD
item type in (15,40) = Import
| Item Type | Item Desc |
| 1 | Domestic |
| 7 | Domestic |
| 33 | Domestic |
| 25 | DSD |
| 13 | DSD |
| 40 | import |
| 15 | import |
Currently, I am using filter function to separate the data into three groups and then re-union them together...
Is there a better way to do this?
Thank you.