Could you please help me with this problem?
I have a ComboBox in Form and I want return these values into in statement in SQL query:
SELECT *
FROM [Actual_list query]
WHERE ((([Actual_list LSC query].[place]) In (([Forms]![Internal forms]![Places].Value))));
You will need to build your SQL in VBA. You can get the list from the combo.
This is for a numeric list, a list of strings needs quotes.