On a form, I have a subform which is based on a query. The user makes a selection on the form, the query is run, and the sub-form is set to visible.
I allow the user to re-select without exiting the form. If the user re-selects, I set the sub-form visible to false. After the user makes the selection, the query is run, but when the sub-form is visible, it contains the previous query results.
In my testing, before I set the sub-form to visible again, I've tried this code:
me.frm_PM_Changes_subform_ID.Requery
But it doesn't make any changes on the sub-form.
Thanks in advance for your help!!