I have a form with a bunch of fields, you can select various drop downs and such and hit submit and it'll print a form using what you selected as the criteria. Well there is one field that keeps "exploding" and it gives the error described in the topic. It's a drop down using the following for its row source
I didn't write the code and i'm not familiar with Union queries, all I know that it selects all options from that drop down or something, but is there incorrect syntax or something? Thanks!!!!
Code:
SELECT TBL_Org.OrgNumber, TBL_Org.OrgName
FROM TBL_Org;
UNION select 0, "All Orgs"
from TBL_Org
ORDER BY 2;
I didn't write the code and i'm not familiar with Union queries, all I know that it selects all options from that drop down or something, but is there incorrect syntax or something? Thanks!!!!