I'm currently using Access 2007 to create a form where a combo box filters an editable subform.
The subform is based on a query which takes a Project_ID and from the combo box and filters the subform table based on that Project_ID number. When in form view I am able to change the combo box and after manually refreshing filter the subform. However the subform does not filter automatically with the combo change.
I can't figure out what is going wrong. I've tried multiple VBA variations but nothing works. I am currently using this VBA script after change to lode the subform.
Private Sub cboProjectSelect_AfterUpdate()
Me!Project_Tracker_Subform.Form.Requery
End Sub