I have a list of IDs:
12
153
87
65
15
12
354
153
65
78
354
12
And I want the output to read:
12, 15, 65, 78, 87, 153, 354
It basically removes the duplicates and presents all the different IDs in an easy-to-read string sorted in numerical order from least to greatest.
Thanks in advance for your help!
Bookmarks