我在查询表达式中收到错误“语法错误(缺少运算符):
'tblFICL.Product = Muni/Money Market AND tblFICL.Broker_Code = WELLS'
完整的 vba 查询如下。我猜这与我的变量prdct
和bkr
. 我在此查询中缺少什么语法?
'Set and Excecute SQL Command'
strSQL = "SELECT tblFICL.Email " _
& " FROM tblFICL " _
& " WHERE tblFICL.Product = " & prdct & " AND tblFICL.Broker_Code = " & bkr & ""
整天都在看这个,任何帮助都会非常感激。