A family of Microsoft relational database management systems designed for ease of use.
Hi @Patrick Snyder
Thank you for your response.
Based on your screenshot, the issue is likely caused by a syntax error in the SQL statement. It appears that some spaces between keywords are missing, so Access is not able to interpret it correctly.
Please try updating it using the Zoom window as follows:
-Open the Material form in Design View.
-Select the second combo box (RFQ).
-Open the Property Sheet and go to the Data tab.
-Right-click in the Row Source field and choose Zoom….
-In the Zoom window, replace the existing text with the corrected SQL, then click OK.
SELECT DISTINCT RFQ_num
FROM Data
WHERE Cty = Forms!Material!Combo5
ORDER BY RFQ_num;
-Save the form, close it, and reopen it.
This should resolve the syntax error and allow the RFQ combo box dropdown to display the correct values based on the selected Country.
Please try this on your side and let me know if it works.