Combo Box & Report Questions

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.
 
A

ADB_Seeker

You are awesome! It is fixed and works perfectly. Thank you ever so much!!

Dirk Goldgar said:
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.

--
Dirk Goldgar, MS Access MVP
Access tips: www.datagnostics.com/tips.html

(please reply to the newsgroup)

.
 
D

Dirk Goldgar

ADB_Seeker said:
It is fixed and works perfectly. Thank you ever so much!!

Excellent! It took a little while -- and I apologize for the delays in some
of my responses, but it's been a busy week -- but we got there.

You're very welcome.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top