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

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

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

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

我正在留下空白列,效果很好,但相反,我有一个如下所示的标题:

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

我该如何删除它们?

google-sheets google-sheets-query
1个回答
1
投票

你可以通过添加空label ' ''',' ''',' '''删除它

=QUERY({input1!A2:D}, "select Col1,' ','  ','   ',Col2,Col3 
                       where Col1 is not null
                       label ' ''','  ''','   '''", 0)
© www.soinside.com 2019 - 2024. All rights reserved.