Last but not least this is the code I use
etc...Code:Private Sub cmb_bound_AfterUpdate() q_get_measurement_subform.Form.Filter = "[Bound]='" & Me.cmb_bound.Text & "'" q_get_measurement_subform.Form.FilterOn = True End Sub Private Sub cmb_kp_AfterUpdate() q_get_measurement_subform.Form.Filter = "[KP]= " & Str(Nz([Screen].[ActiveControl], 0)) q_get_measurement_subform.Form.FilterOn = True End sub
but if i set a filter, it works but if i sent another, the first one goes away, how can I keep the other filtered and the filter another one?
Thanks!