我有一张excel表格从微软动态导入大量数据。我在crm中使用export函数,只导入“owner equals current user”的数据。 Somethimes我还需要工作表来导入其他用户数据,但在更改sql导入代码时遇到问题。
今天它看起来像这样:
join FilteredAccount as "af" on ("ac".col_accountid = "af".accountid and ("af".ownerid = ? and "af".customertypecode = 181400001)) order by "col_holding0".col_financialproductidname asc , "col_holding0".col_holdingid asc
“af”之后的代码中的问号.ownerid =?是我希望查询使用sheet29中单元格C2的值(sheetname是管理员,所以我假设像admin!c2),但我得到一个错误,它无法找到这个值。我也使用了“sheet29!c2”,结果相同 如何使此查询使用单元格29中的值?c2 in excel?