I have a list of descriptions and need to create another column to categorise them.
This an example of what I want to get for multiple categories and combinations:
| Column 1 (Description) | Column 2 (Category) |
| Year End abcd | Year End |
| YE abcd | Year End |
| yEar End abcd | Year End |
| year End abcd | Year End |
| Technology abcd | Technology |
| technology startup abcd | Technology |
| Tech abcd | Technology |
Please note that "abcd" are just an example of random words.
My experience is very limited and I've been using the formula tool to list out every unique description since it seems to be case sensitive and needs to exactly match but with over 1,000 unique cells it's very manual and time consuming. This is what I'm doing:
IF [Column 1 (Description)] = "Year End abcd" THEN "Year End"
ELSEIF [Column 1 (Description)] = "YE abcd" THEN "Year End"
ELSEIF [Column 1 (Description)] = "yEar End abcd" THEN "Year End"
ELSEIF [Column 1 (Description)] = "year End abcd" THEN "Year End"
ELSEIF [Column 1 (Description)] = "Technology abcd" THEN "Technology"
ELSEIF [Column 1 (Description)] = "technology startup abcd" THEN "Technology"
ELSEIF [Column 1 (Description)] = "Tech abcd" THEN "Technology"
ELSE "N/A" ENDIF
Please let me know if there's another easier way to do this! Thank you 