过滤桌按模式

发布于 2025-01-22 00:59:52 字数 378 浏览 1 评论 0原文

a1:j11 的数据,如示例 m1:o16 中。是否可以通过公式实现此功能?我会为任何帮助而高兴。

补充:

我有一个电子表格,其中每天以范围 a:j 等格式添加数据。我需要从另一个数据上的数据中形成一个表,其中第一列将包含日期,第二列将包含当天的数据,而第三列将包含当晚的数据。如 m1:o16 的示例

Here is my spreadsheet. I need to display data from the range A1:J11 as in the example M1:O16. Is it possible to implement this with a formula? I will be glad for any help.

Added:

I have a spreadsheet where data is added daily in a format such as the range A:J. I need to form a table from this data on another sheet, in which the first column will contain DATE, the second column will contain data for the DAY, and the third column will contain data for the NIGHT. As in the example of M1:O16

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

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

发布评论

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

评论(1

最近可好 2025-01-29 00:59:52

尝试:

={QUERY(FLATTEN(QUERY(A1:J; "skipping 4")); "where Col1 is not null"; )\
 QUERY(FLATTEN(QUERY(FILTER(A3:J; MOD(COLUMN(A:J)-1; 2)=0); "skipping 4")); "where Col1 is not null"; )\
 QUERY(FLATTEN(QUERY(FILTER(A3:J; MOD(COLUMN(A:J);   2)=0); "skipping 4")); "where Col1 is not null"; )}

在此处输入图像描述“

try:

={QUERY(FLATTEN(QUERY(A1:J; "skipping 4")); "where Col1 is not null"; )\
 QUERY(FLATTEN(QUERY(FILTER(A3:J; MOD(COLUMN(A:J)-1; 2)=0); "skipping 4")); "where Col1 is not null"; )\
 QUERY(FLATTEN(QUERY(FILTER(A3:J; MOD(COLUMN(A:J);   2)=0); "skipping 4")); "where Col1 is not null"; )}

enter image description here

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