What is the proper syntax to a use a combo box to filter results of a report based on a y/n field and apply no filter if the combo box is empty?
this is what I have so far:
But it won't account for an empty combo box.
this is what I have so far:
Code:
strWhere = " YesNoField Like " & IIf([Forms]![frmReports]![cboYesNo] = "Yes", True, False)
Comment