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

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/delphi/9.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 谷歌电子表格查询-合并三个结果列表_Google Sheets_Google Query Language - Fatal编程技术网

Google sheets 谷歌电子表格查询-合并三个结果列表

Google sheets 谷歌电子表格查询-合并三个结果列表,google-sheets,google-query-language,Google Sheets,Google Query Language,我在电子表格中有3个项目列表,我想把它们列成一个大列表。有人能帮忙吗 List1: a1 a2 List2: b1 b2 b3 List3: c1 c2 结果(在我的梦中:)-一个没有空行的大列表: a1 a2 b1 b2 b3 c1 c2 我的做法: 我试过类似的东西 = QUERY(A2:A; "select A where A !=''")&QUERY(B2:B; "select B where B !=''")=&QUERY(C2:C; "select C

我在电子表格中有3个项目列表,我想把它们列成一个大列表。有人能帮忙吗

List1:
a1

a2

List2: 
b1

b2
b3

List3:
c1

c2
结果(在我的梦中:)-一个没有空行的大列表:

a1
a2
b1
b2
b3
c1
c2
我的做法:

我试过类似的东西

= QUERY(A2:A; "select A where A !=''")&QUERY(B2:B; "select B where B !=''")=&QUERY(C2:C; "select C where C !=''")
但这不起作用:(

屏幕:

电子表格(可编辑的公共)

这个问题与SQL中的问题类似,但有不同的命令,它不起作用

致意
Marcin

在您共享的表格中,我在H2中输入:

=query({A2:A;B2:B;C2:C}; "Select * where Col1 <>'' ")
两个公式应输出相同的大列表…;-)

=ArrayFormula(transpose(split(concatenate(A2:C&"/");"/")))