I am getting the error 'Syntax error (missing operator) in query expression:
'tblFICL.Product = Muni/Money Market AND tblFICL.Broker_Code = WELLS'
The full vba query is below. I am guessing this has something to do with my variables prdct and bkr. What syntax am I missing in this query?
'Set and Excecute SQL Command'
strSQL = "SELECT tblFICL.Email " _
& " FROM tblFICL " _
& " WHERE tblFICL.Product = " & prdct & " AND tblFICL.Broker_Code = " & bkr & ""
Been looking at this all day, any help would be greatly appriciated.