Hello,
I'm curious if there exists a tool that can be used to bin string field values into another column. Ideally the configuration would allow you to select a column, then would display all unique values in that column and allow manual drag-and-drop binning (similar to the grouping capability in Power BI).
An example would be a database of animals, with an "Animal" column with the following set of unique values:
Dog
Cat
Alligator
Rooster
Lion
Gecko
Dove
I envision a tool that would allow you to select column "Animals" and set categories (e.g. Mammal, Bird, Reptile) for output to a new column then drag and drop the different animals into each category. Historically I've used large nested if functions (e.g. if animal="dove" then "bird" elseif animal = "gecko" then "reptile", etc....) but this can become tedious.
Would appreciate any alternatives to the nested if solution.