Did you make any progress on this? Maybe you could try giving your fields an explicit alias using the AS keyword?
Like:
SELECT
People.`Name` <b>as Name</b>,
People.`Age` <b>as Age</b>,
People.`Sex` <b>as Sex</b>
FROM
`People` People
WHERE
People.`Sex` = 'M'
UNION
SELECT...
You could suppress the fields which are the same as those in the previous record. This is done by right-clicking on the field in the Design View, choose Format Field, click the x-2 box to the right of Suppress, and then enter a formula such as this:
if previous({ado.order_numb}) =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.