Hello, I am working with a data set that is a report about users.
The relevant columns are:
- Category
- Zip Code
- Active
- Revenue
An example of this data is
category | zip code | active | revenue
- "unknown" | 12345 | true | 900
- "Other" | 12345 | true | 1000
Because of the sources of this data, I want to combine "unknown" and "other" so the report accounts for all the unknown categories. I would like to combine this and aggregate where appropriate so that the result looks like:
category | zip code | active | revenue
- "Unknown\Other" | 12345 | true | 1900
How would I do this and bonus points if I can do this without creating a new table.