How do I filter an Access subform with multiple combo boxes in the form?
问题 I have multiple combo boxes in my form (acct_nbr, type, team_aud). I'm looking for a way to filter the subform (as a datasheet) based on the selection of each combo box. If a combo box is not used in the filter, the subform data just filters on the other two combo boxes. Here is what I have so far: Private Sub cboAccountFilter_AfterUpdate() Call FilterSubform End Sub Private Sub cboTypeFilter_AfterUpdate() Call FilterSubform End Sub Private Sub txtTeamAuditorFilter_AfterUpdate() Call