Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/search/2.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 Sheets_Google Sheets Query - Fatal编程技术网

Google sheets Google Sheets查询-删除空白列标题

Google sheets Google Sheets查询-删除空白列标题,google-sheets,google-sheets-query,Google Sheets,Google Sheets Query,我正在运行一个简单的Google Sheets查询,如: =query({input1!A2:D},"select Col1,' ',' ',' ',Col2,Col3 where Col1 is not null",0) 我留下了一些空白栏,效果很好,但是我有一个标题,如下所示: " "() " "() " "() 如何删除它们?您可以通过添加空的标签“”来删除它 =QUERY({input1!A2:D}, "select Col1,' ',' ',' ',Col2

我正在运行一个简单的Google Sheets查询,如:

=query({input1!A2:D},"select Col1,' ','  ','   ',Col2,Col3 where Col1 is not null",0)
我留下了一些空白栏,效果很好,但是我有一个标题,如下所示:

" "()   "  "()  "   "()

如何删除它们?

您可以通过添加空的
标签“”来删除它

=QUERY({input1!A2:D}, "select Col1,' ','  ','   ',Col2,Col3 
                       where Col1 is not null
                       label ' ''','  ''','   '''", 0)