G
Guest
I have a combo box with a query as data source. The query uses a parameter
that is also a combo box on the same form.
When I first open the form the query works fine using the ap[pripriate value
from the combo box above, but when I subsequently change the parameter combo
box and then retry to populate the combo box with the query it's not pulling
in the new parameter value - do I need to refresh the form somehow? How could
I do that?
This is the record source for my combo box:
SELECT tblUWLookup.Underwriter
FROM tblUWLookup
WHERE (((tblUWLookup.Region)=[Forms]![frmPolicyInfo]![Region]))
ORDER BY tblUWLookup.Underwriter;
JHM
that is also a combo box on the same form.
When I first open the form the query works fine using the ap[pripriate value
from the combo box above, but when I subsequently change the parameter combo
box and then retry to populate the combo box with the query it's not pulling
in the new parameter value - do I need to refresh the form somehow? How could
I do that?
This is the record source for my combo box:
SELECT tblUWLookup.Underwriter
FROM tblUWLookup
WHERE (((tblUWLookup.Region)=[Forms]![frmPolicyInfo]![Region]))
ORDER BY tblUWLookup.Underwriter;
JHM