Thank you Orange, getting close!
The query is now
Code:
SELECT dbo_Stoel.Stoelnummer, dbo_Stoel.Zaal, dbo_Stoel.Rang
FROM dbo_Stoel
WHERE (((dbo_Stoel.Zaal)=[Forms]![dbo_Zaal subform].[Form].[CurrentRecord]));
But it seems CurrentRecord doesn't give back the text of the selected column as the query is still prompting me for input rather than using the value.
I also tried the column name (Zaalnaam) which does the same (still prompting for input). When I manually enter "Grote Zaal" in the popup that prompts for input it works as expected.
.[CurrentRecord] doesn't seem to have any properties as the smartmenu/intellisense (whatever it's called in access) doesn't come up with anything.