Hi there,
I am trying to create separate lists based on grouping the unique values in a single column - how can I go about doing this? See example below.
I have the following data and want to group unique animals into separate tables/lists:
Animal | Color |
Dog | Black |
Dog | Brown |
Dog | White |
Cat | Orange |
Cat | White |
Hamster | Brown |
Hamster | Gray |
The ideal result would be:
Animal | Color |
Dog | Black |
Dog | Brown |
Dog | White |
Animal | Color |
Cat | Orange |
Cat | White |
Animal | Color |
Hamster | Brown |
Hamster | Gray |
I do not want to simply filter by hardcoding the actual values (i.e. filtering to only dog), as my real dataset contains large variations of data.
Please advise.
Thank you!