I have 4 combo boxes on a report for the fields, City, County, IBCCP
Agency Name, and Other Agency Name.
The row source for City is: SELECT DISTINCTROW [Cities].[ID],
[Cities].
[City] FROM [Cities];
This allows the values selected on the combo box on my main form to
show up on my report.
The row source for County is: SELECT DISTINCTROW [Counties].[County
Code ID2], [Counties].[County] FROM [Counties];
This also returns the values selected on the combo box on my main
form
to show up on my report.
However, I am not successful in getting the correct row source for
the
fields, IBCCP Agency Name, and Other Agency Name.
Can you help point me in the right direction?
Thanks,
John
Agency Name, and Other Agency Name.
The row source for City is: SELECT DISTINCTROW [Cities].[ID],
[Cities].
[City] FROM [Cities];
This allows the values selected on the combo box on my main form to
show up on my report.
The row source for County is: SELECT DISTINCTROW [Counties].[County
Code ID2], [Counties].[County] FROM [Counties];
This also returns the values selected on the combo box on my main
form
to show up on my report.
However, I am not successful in getting the correct row source for
the
fields, IBCCP Agency Name, and Other Agency Name.
Can you help point me in the right direction?
Thanks,
John
Comment