Hi, I hope someone can assist
I want to include a "catch-all" in the recordsource for a combo box.
This works for an Access based table:
SELECT DISTINCT rBST.Received_Date FROM rBST UNION Select "All" From rBST
ORDER BY rBST.Received_Date DESC;
However, when creating the table in SQL, I am...