I currently have a button set up on my main form that filters results on a subform for a specific value in a combo box. No issues getting this to work. What I want to do now is add an additional requirement to the filter that will only show 'false' values in a checkbox.
My current code is:
Private Sub ReceivingFilter_Click()
Me.InspectionDetail_Subform.Form.Filter = "InspType = 'Receiving'"
Me.InspectionDetail_Subform.Form.FilterOn = True
End Sub
I've tried multiple things to add in the additional checkbox filter but nothing seems to work. Any suggestions?