Remove duplicates from list

0
How to get distinct column values from list i.e. remove duplicates while i read a single columns from the list retrieved?
asked
1 answers
4

You can make items in a list unique bij joining the list by itself. 

List operation = Union

List = List to deduplicate

List/object = List to deduplicate

Output = Name of deduplicated list.

answered