Google表格查询 - 删除空白列标题



我正在运行一个简单的Google表格查询:

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

我要留下很棒的空白列,但是,我有一个像下面的标头:

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

如何删除它们?

您可以通过添加空label ' ''',' ''',' '''

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

最新更新