Greetings!
I have the following sub:
Public Sub FilteredQuery()
Dim Clauses(2) As String
Dim SQL As String
'Add columns here
Call AppendClause(Clauses, 0, Me!chkShipped, "Shipped")
Call AppendClause(Clauses, 1, Me!chkClosed, "Closed")
Call AppendClause(Clauses, 2...