D
Dirk Goldgar
ADB_Seeker said:Your help is much appreciated!
All updates/changes are complete. The Originator field is now numeric/long
integer and links to the ID field in ASSIGNEES table.
I need help with the next steps, please.
This brings us back to your original question about the code for your combo
box to open the report filtered by the selected ID value. The crucial line
is the one that assigns the WHERE condition to stWhere. I believe the last
time we were looking at this, the statement in question was this:
strWhere = "[ASSIGNEES].[ID]=" & Me!cboSpecEObyAssignee
But that is not correct, because the field we want to filter is the
ORIGINATOR field of [EO TABLE]. So the statement should be:
strWhere = "[EO TABLE].ORIGINATOR=" & Me!cboSpecEObyAssignee
Try that.