I have a list of people's names. 1 field is the first name, the other is the last name. (simple enough).
Now, I need to accomplish somthing similar to using the DISTINCT function where it only select 1 of each value from the whole fields contents, however, the problem is that some people with the same first names have different last names, and vice versa....Example, the list may look somthing like this...
John Rivers
Joe Smith
Joe Smith
John Deere
John Deere
Pat Miller
Sarah Smith
Joan Rivers
Pat Pickard
Pat Pickard
Sarah Smith
So I want to pick out each person from the two column set just once. If I use distinct on either the first or last names, it'll automatically weed out other people by grouping people like Joe and Sarah Smith both into the smith name, and Joan and John Rivers into the Rivers category. (and likewise for distinct on the first name).
Does anyone know if there's a way to do this when it's seperated into two columns? -Ovatvvon :-Q
Now, I need to accomplish somthing similar to using the DISTINCT function where it only select 1 of each value from the whole fields contents, however, the problem is that some people with the same first names have different last names, and vice versa....Example, the list may look somthing like this...
John Rivers
Joe Smith
Joe Smith
John Deere
John Deere
Pat Miller
Sarah Smith
Joan Rivers
Pat Pickard
Pat Pickard
Sarah Smith
So I want to pick out each person from the two column set just once. If I use distinct on either the first or last names, it'll automatically weed out other people by grouping people like Joe and Sarah Smith both into the smith name, and Joan and John Rivers into the Rivers category. (and likewise for distinct on the first name).
Does anyone know if there's a way to do this when it's seperated into two columns? -Ovatvvon :-Q