R
Robert Raley
I have a UNION query that returns some duplicates values.
What I would like to have is a list of the [stage_name] where the name is
only shown one time.
This is my query
SELECT stage_name, Name FROM qry_mod_trans_min;
UNION ALL SELECT stage_name, Name FROM qry_mod_trans_det;
UNION ALL SELECT stage_name, Name FROM qry_mod_trans_man;
How do I do show all names but with out dublicates. It is really affecting
my reports because the subreports that are linked by [stage_name] are
showing 2 times.
Thanks for your help.
Bob
What I would like to have is a list of the [stage_name] where the name is
only shown one time.
This is my query
SELECT stage_name, Name FROM qry_mod_trans_min;
UNION ALL SELECT stage_name, Name FROM qry_mod_trans_det;
UNION ALL SELECT stage_name, Name FROM qry_mod_trans_man;
How do I do show all names but with out dublicates. It is really affecting
my reports because the subreports that are linked by [stage_name] are
showing 2 times.
Thanks for your help.
Bob