How do I combine these 2 aruguments into one Line ?
stWhere = "[FPAID] Is Null"
stWhere = "[County] = ""ESSEX"""
I tried
stWhere = """[FPAID] Is Null" & "[County] = ""ESSEX"""
i get a syntax error (missing op) in query expression '("[FPAID] is Null[CCOUNTY]= "ESSEX")'
BTW Code works fine if I one use 1 arugment..
stWhere = "[FPAID] Is Null"
stWhere = "[County] = ""ESSEX"""
I tried
stWhere = """[FPAID] Is Null" & "[County] = ""ESSEX"""
i get a syntax error (missing op) in query expression '("[FPAID] is Null[CCOUNTY]= "ESSEX")'
BTW Code works fine if I one use 1 arugment..