nothing seems to work in the where clause, see error at end of post, 3075 syntax error, missing operator
I build the query string below and eventually execute with Set rst = dbs.OpenRecordset(strSQL1) which is where I get the error
strSQL1 = "select transaction_history.[Activity Type] " & _
" from transaction_history " & _
"where [transaction_history]![Activity Type] = " & _
"""a value to match"""
note the above resolves to:
select transaction_history.[Activity Type] from transaction_history where [transaction_history]![Activity Type] = "someValue"
I have tried all these where clauses:
where [transaction_history]![Activity Type] =
where transaction_history.[Activity Type] = (note this syntax seems to be fine in the select clause)
where [Activity Type] =
![]()