Indrange查询公式

发布于 2025-01-22 03:12:57 字数 167 浏览 4 评论 0原文

你好

enter image description here

HELLO ????
Need help with a formula. I want to pull information from Columns 1, 11, 14 from Week 6 from all 3 sheets using the importrange formula since im putting this on another google sheet.

I have this formula currently but its not going
=QUERY(IMPORTRANGE("https goes here from the original spreadhsheet","Sheet1!A1:U" "Sheet2!A1:U" "Sheet3!A1:U"),"Select Col1, Col11, Col14, Col21= '6'","")

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

从﹋此江山别 2025-01-29 03:12:57

使用:

=QUERY({
 IMPORTRANGE("1tnAtFgxCl2DnyYL0cjzijsqw8WlvC1BxI80hduaPwi0", "Sheet1!A1:U"); 
 IMPORTRANGE("1tnAtFgxCl2DnyYL0cjzijsqw8WlvC1BxI80hduaPwi0", "Sheet2!A1:U"); 
 IMPORTRANGE("1tnAtFgxCl2DnyYL0cjzijsqw8WlvC1BxI80hduaPwi0", "Sheet3!A1:U")}, 
 "select Col1,Col11,Col14 
  where Col21 = 6", 1)

use:

=QUERY({
 IMPORTRANGE("1tnAtFgxCl2DnyYL0cjzijsqw8WlvC1BxI80hduaPwi0", "Sheet1!A1:U"); 
 IMPORTRANGE("1tnAtFgxCl2DnyYL0cjzijsqw8WlvC1BxI80hduaPwi0", "Sheet2!A1:U"); 
 IMPORTRANGE("1tnAtFgxCl2DnyYL0cjzijsqw8WlvC1BxI80hduaPwi0", "Sheet3!A1:U")}, 
 "select Col1,Col11,Col14 
  where Col21 = 6", 1)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文