Google Sheets 中的查询功能 - 也使用导入范围在一列中查找两个名称

发布于 2025-01-10 21:33:30 字数 241 浏览 0 评论 0原文

您好,我试图在同一列中提取两个不同的名称,同时从另一列中提取,例如也使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

折戟 2025-01-17 21:33:30

你的想法是正确的,但你缺少一个操作员。您需要包含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 ")

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文