I currently have code on click to filter a subform based on a combo box and it works great. (see below)
Me.[task detail subform].Form.Filter = "[Person Responsible] =" & Me!Combo107
Me.[task detail subform].Form.FilterOn = True
The problem is I also need to only show records that have a 1, 2 or 3 in the status field on the same report.
How do I join that to the above filter?
Me.[task detail subform].Form.Filter = "[Person Responsible] =" & Me!Combo107
Me.[task detail subform].Form.FilterOn = True
The problem is I also need to only show records that have a 1, 2 or 3 in the status field on the same report.
How do I join that to the above filter?