Hi,
I have a question that may be a bit confusing. Can anyone help me?
I have an unbound main form.
The subform is bound to a table. I would like to open the main form with a filter to be applied to the subform. Actually, the filter is really another table with a list of IDs. (Does a filter have to be a query? If so, I created a query listing the whole table.) So, I want the subform to show only the IDs in the filter table. Does this make sense?
I was trying to do it with this command:
"DoCmd.OpenForm stDocName, acNormal, "qryAssignView"
But this tries to apply the filter to the mainform. How do I get it applied to the subform?
I have a question that may be a bit confusing. Can anyone help me?
I have an unbound main form.
The subform is bound to a table. I would like to open the main form with a filter to be applied to the subform. Actually, the filter is really another table with a list of IDs. (Does a filter have to be a query? If so, I created a query listing the whole table.) So, I want the subform to show only the IDs in the filter table. Does this make sense?
I was trying to do it with this command:
"DoCmd.OpenForm stDocName, acNormal, "qryAssignView"
But this tries to apply the filter to the mainform. How do I get it applied to the subform?