Is there a way to pull only unique items once?
I have a list of properties and each has a "brand" and I want to list those brands without having duplicates show up in the "brand" list that is separate from the properties list/
Example I have a list
A
A
A
B
C
C
D
D
D
But I want to output A, B, C, D
How would I do that?
Thanks in advance!