Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/google-sheets/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google sheets 使用NOT(ISBLANK)将两列筛选为一列_Google Sheets_Filter_Google Sheets Formula_Google Sheets Query_Google Query Language - Fatal编程技术网

Google sheets 使用NOT(ISBLANK)将两列筛选为一列

Google sheets 使用NOT(ISBLANK)将两列筛选为一列,google-sheets,filter,google-sheets-formula,google-sheets-query,google-query-language,Google Sheets,Filter,Google Sheets Formula,Google Sheets Query,Google Query Language,我有两列,我想转换成一列,但不显示空白。 e、 g 预期结果: |---------------------| | Column 1 | |---------------------| | Test1 | |---------------------| | Test2 | |---------------------| | Test3 | |---------------------| |

我有两列,我想转换成一列,但不显示空白。 e、 g

预期结果:

|---------------------|
|      Column 1       |
|---------------------|
|       Test1         |
|---------------------|
|       Test2         |
|---------------------|
|       Test3         |
|---------------------|
|       Test4         |
|---------------------|
我的最佳选择是使用这个公式,但它不起作用

=FILTER({E6:G17,E22:G33},NOT(ISBLANK({E6:G17,E22:G33})))
你们能帮帮我吗?

试试:

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

=过滤器({A:A;B:B},{A:A;B:B}”)
=QUERY({A:A; B:B}, "where Col1 is not null")
=FILTER({A:A; B:B}, {A:A; B:B}<>"")