创建具有不同动态纸的价值的列表

发布于 2025-01-22 07:30:40 字数 306 浏览 2 评论 0原文

我有三个不同的表中的值列表,这些纸在A列中具有动态性,我必须将其中的三个放入主表格列表中。

在图像中,颜色正方形是不同的片段,在右边是合并表,我需要此合并列表,其中所有其他表格中的值都这样:

I have a list of values in three different sheets that are dynamic in column A, I have to put merge the three of them into a main sheet big list.

In the image the color squares are the different sheets and in the right is the merge sheet where I need this merged list with the values from all the other sheets something like this:

enter image description here

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

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

发布评论

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

评论(3

零度℉ 2025-01-29 07:30:40

使用:

=FILTER({'Sheet 5'!A:A; 'Sheet 6'!A:A; 'Sheet 7'!A:A}; 
        {'Sheet 5'!A:A; 'Sheet 6'!A:A; 'Sheet 7'!A:A}<>"")

use:

=FILTER({'Sheet 5'!A:A; 'Sheet 6'!A:A; 'Sheet 7'!A:A}; 
        {'Sheet 5'!A:A; 'Sheet 6'!A:A; 'Sheet 7'!A:A}<>"")
能怎样 2025-01-29 07:30:40

有不同的方法可以做到这一点。

=QUERY(C:C,"select * where C is not null")

您可以使用filter()功能

=FILTER(C:C,C:C<>"")

There are different ways to do that.

=QUERY(C:C,"select * where C is not null")

You can use FILTER() function like

=FILTER(C:C,C:C<>"")
绝情姑娘 2025-01-29 07:30:40

尝试

=query({Sheet1!A1:A;Sheet2!A2:A;Sheet3!A1:A},"where Col1 is not null")

=query({Sheet1!A1:A;Sheet2!A2:A;Sheet3!A1:A};"where Col1 is not null")

根据您的语言环境

Try this

=query({Sheet1!A1:A;Sheet2!A2:A;Sheet3!A1:A},"where Col1 is not null")

or

=query({Sheet1!A1:A;Sheet2!A2:A;Sheet3!A1:A};"where Col1 is not null")

according to your locale

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