This seems like it should be simple, but for some reason it's not (for me) ...
Table1:
RecID Client
1 A
2 B
3 C
Table2:
RecID Client
1 D
2 A
3 E
As you can see Client A appears in both tables, but the other clients do not. How do I query the Client value in both tables to generate a list of unique values that includes all of them. The desired result is ...
Client
A
B
C
D
E
Thanks!
Joe
Table1:
RecID Client
1 A
2 B
3 C
Table2:
RecID Client
1 D
2 A
3 E
As you can see Client A appears in both tables, but the other clients do not. How do I query the Client value in both tables to generate a list of unique values that includes all of them. The desired result is ...
Client
A
B
C
D
E
Thanks!
Joe