P
Pat Coleman
I have a combo box set up with a query as follows
SELECT VendorNames.NAME FROM VendorNames;
in the Row Source under the Data Tab
When the user selects a name, a report is displayed for that vendor.
However I would like to have to option to have an "all" selection so a
report for all vendors will open up.
I have followed instructions on Article ID : 210290
with no success.
The following do not work
SELECT VendorNames.NAME FROM VendorNames UNION Select Null as AllChoice ,
"(All)" as Bogus From VendorNames;
or
SELECT VendorNames.NAME FROM VendorNames UNION Select "(All)" as Bogus From
VendorNames;
Whats missing ?????
Thanks
SELECT VendorNames.NAME FROM VendorNames;
in the Row Source under the Data Tab
When the user selects a name, a report is displayed for that vendor.
However I would like to have to option to have an "all" selection so a
report for all vendors will open up.
I have followed instructions on Article ID : 210290
with no success.
The following do not work
SELECT VendorNames.NAME FROM VendorNames UNION Select Null as AllChoice ,
"(All)" as Bogus From VendorNames;
or
SELECT VendorNames.NAME FROM VendorNames UNION Select "(All)" as Bogus From
VendorNames;
Whats missing ?????
Thanks