I have searched around, and it seems that this is a limitation in MS Access, so I\'m wondering what creative solutions other have found to this puzzle.
If you have a
I've just done similar. My solution was to use a fixed row source bound to a query. The query's WHERE
clauses reference the form's control i.e. Client=Forms!frmMain!ClientTextBox
. This alone will fill the combo boxes with the first row's data. The trick then is to set an 'On Enter
' event which simply does a re-query on the combo box e.g. ComboBox1.Requery
, this will re-query that combo box alone and will only drag in the data related to that record row.
Hope that works for you too!