Using filter on subforms

A

Ayo

I have a form, with 2 subforms, that is opened by another form using an
OpenArgs:
Private Sub Form_Load()
Me.Milestones_Actuals_subform.Form.RecordSource = Me.OpenArgs
Me.Milestones_Forcast_subform.Form.RecordSource = Me.OpenArgs
End Sub
Where OpenArgs:=strMilestonesActualSQL & "(" & strMilestoneChkboxes & ")"
My form also contains about 6 ComboBoxes which I intend to use as Filters. I
want to filter the content of the subforms based on the values in these
ComboBoxes. I need to know if this is possible and if so, can someone point
me in the right direction.
Thank you
 
Top