I have a mainform that has a dropdown of "Categories". There is a Subform with a recordsource of detail records, which Category is a field. I want to display only the records in the subform that fit that Category selected.
I have done this before where I had built different queries based on what they selected, but I'd like to take the Dropdown selection and open the subform with those records. Below is what I coded when I used queries:
Me.subform_Inv_Detail.Form.RecordSource = qwyName
How can I change that to point to the actual field in the subform and only show the fields containing that Category?
Make sense? Thanks!
I have done this before where I had built different queries based on what they selected, but I'd like to take the Dropdown selection and open the subform with those records. Below is what I coded when I used queries:
Me.subform_Inv_Detail.Form.RecordSource = qwyName
How can I change that to point to the actual field in the subform and only show the fields containing that Category?
Make sense? Thanks!