hi Paul,
a union combines record sets like this
field1 field2
1 2
union
field3 field5
2 8
will produce
field1 field2
1 2
2 8
note that there are no more field3 & field4 names. that's the way a union works.
if you need separate fields for your other values then you would need to use sub-queries instead.