Google Sheets 中的查询功能 - 也使用导入范围在一列中查找两个名称
您好,我试图在同一列中提取两个不同的名称,同时从另一列中提取,例如也使用 importrange。
=query(IMPORTRANGE("https://docs.google.com/spreadsheets/","部门导入!A:N"),"select * where Col7='Josh' Col7=""Da'rone" " and Col1=2022 ")
我在从 col7 中提取数据时不断收到错误。
Hello I am trying to pull two different names within the same column while pull from another column for example also using importrange.
=query(IMPORTRANGE("https://docs.google.com/spreadsheets/","Department Import!A:N"),"select * where Col7='Josh' Col7=""Da'rone"" and Col1=2022 ")
I keep getting an error with pulling from col7.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的想法是正确的,但你缺少一个操作员。您需要包含OR。
公式
=query(IMPORTRANGE("https://docs.google.com/spreadsheets/","部门导入!A:N"),"选择 * 其中 (Col7='Josh ' 或者 Col7=""Da'rone"") 和 Col1=2022 ")
You have the right idea but you are missing an operator. You need to include OR.
FORMULA
=query(IMPORTRANGE("https://docs.google.com/spreadsheets/","Department Import!A:N"),"select * where (Col7='Josh' OR Col7=""Da'rone"") and Col1=2022 ")