I have set up a statement:
SELECT DISTINCT [Locations].[Region] FROM Locations UNION select null as AllChoice, “(ALL)” as bogus from locations ORDER BY region;
in an attempt to add the choice of “ALL” in a combo that generates a report for me. I am getting an error:
‘The number of columns in the two selected tables do not match’
Any help?