Hi,
I want to compare a report which are from different tables (query).
for examples:
result from query A:
NameA | value1A | value2A |
---|---|---|
A | a | w |
B | b | f |
C | a | y |
D | g | h |
result from query B:
NameB | value1B | value2B |
---|---|---|
A | r | w |
B | j | f |
C | y | h |
D | m | y |
E | i | k |
F | l | l |
I want the result to show like this:
Name | value1B | value2B |
---|---|---|
E | i | k |
F | l | l |
Regards.