FILTER 2列与NOT(ISBLANK)合并为一

问题描述 投票:0回答:1

我有两列要转换为1列,但不显示空白。例如

|---------------------|------------------|
|      Column 1       |     Column 2     |
|---------------------|------------------|
|       Test1         |      Test2       |
|---------------------|------------------|
|                     |                  |
|---------------------|------------------|
|       Test4         |      Test3       |
|---------------------|------------------|

预期结果:

|---------------------|
|      Column 1       |
|---------------------|
|       Test1         |
|---------------------|
|       Test2         |
|---------------------|
|       Test3         |
|---------------------|
|       Test4         |
|---------------------|

我最好的选择是使用此公式,但它不起作用。

=FILTER({E6:G17,E22:G33},NOT(ISBLANK({E6:G17,E22:G33})))

你们能帮我吗?

google-sheets filter google-sheets-formula google-sheets-query google-query-language
1个回答
0
投票

尝试:

=QUERY({A:A; B:B}, "where Col1 is not null")

或:

=FILTER({A:A; B:B}, {A:A; B:B}<>"")
© www.soinside.com 2019 - 2024. All rights reserved.