What is the best way to go about merging the results of two fields in
the same table?
I have two different fields that hold lists of names, some of them
identical, some different. From those I'd like to generate a merged
list with all the distinct names.
For example:
Field1 contains: Jack, Joe, Jim, Paul
Field2 contains: Peter, Paul, Joe, Jim
The result should be: Jack, Joe, Jim, Peter, Paul
the same table?
I have two different fields that hold lists of names, some of them
identical, some different. From those I'd like to generate a merged
list with all the distinct names.
For example:
Field1 contains: Jack, Joe, Jim, Paul
Field2 contains: Peter, Paul, Joe, Jim
The result should be: Jack, Joe, Jim, Peter, Paul
Comment