Is there a way to create a list of the unique values of a given BOs attributes? For example, if various instances of Customer.ContactLastName include:
Moses
Brown
White
Coe
Brown
Moses
I would like to see a list that includes only (now alpha sorted):
Brown
Coe
Moses
White
Thanks!
Tom