I have a column of data among many with each record displaying information as below, (serial number is not part of the data)
1. Apple,Orange,Apple,Orange
2. Apple,Apple,OrangeOrange,Grapes
3.Grapes,Grapes,Grapes,Grapes
I would like it to display only the unique values as below (serial # is for reference only)
1. Apple,Orange
2. Apple,Orange.Grapes
3. Grapes
What is the quickest and most efficient way to do this?
Thanks,
V