My form has a combo box for navigation. I accepted the wizard's output because it seems to work just fine without requiring fiddling.
cboJumpRecord:
Lower in the form, I have a listbox for showing past transactions on that item. It uses a query as its rowsource. Right now it shows ALL records in the transactions table. I'd like it to show only the entries for the current record.
I figured this would be as easy as adding a criteria to the query...
Field: MediaItemID
Table: tblMediaItems
Criteria: [Forms]![View Library]![cboJumpRecord]
...but of course that returns no results.
I've fumbled around with it for hours, but not finding any combo that returns results. Where am I going wrong?