Is there a way to add a Where condition to a combo box? For example, I want my combo box to show column B from a table, but only where column A is the same as a field on the table.
I had a go at that, and I got it to work with a specific number, but I couldn't seem to get it to reference a field on the form...
e.g:
SELECT [TblA].[ColumnB] FROM TblA WHERE "[TblA].[ColumnA] = '" & me.FieldA & "'";
Hopefully I am going wrong somewhere really obvious!!
ah, that's nearly got it working - it doesn't seem to update if I change the controlname field though... Will carry on having a play, definitley closer than I was - thank you!