Hello,
Let's say i have an excel table containing multiple attributes and features, and I would like to output in an excel table a summary of the unique values for each attributes.
Using duplicate filters I managed to get the results but they are ordered in rows in order of arrival instead of being nested for each attribute.
Example with three attributes:
ID ----- Name ------City
A1 -----Mark -------Moscow
A2 ------Paul -------Glasgow
A1 -----Joanna ---Capetown
A3------ Paul -------Glasgow
Then in excel I get three columns but the results are spread in the order of arrival of results for each column unique values:
Column A -- Column B -- Column C
A1
A2
A3
--------------Joanna
--------------Paul
--------------Mark
--------------------------------Glasgow
---------------------------------Moscow
-------------------------------- Capetown
Instead of having the results over various lines, I would like to get the unique values on top of each column. Is there a way to do so ?
Maybe working with lists ?
Many thanks if you can help me. Best regards.
Thomas