Google Spreadsheets QUERY() to combine multiple sheets, same workbook

一世执手 提交于 2019-12-05 05:54:04

Semicolon separating sheets causes the first sheet of data to appear, but not the second

This usually means you didn't scroll to the bottom of the sheet to see the second part of data there, under all of the empty rows from the first sheet.

Since you probably don't want to import the empty rows, filter them out (by some column that is expected to be nonempty):

={filter('LandingPages-Oct1'!A16:F, len('LandingPages-Oct1'!A16:A));
  filter('LandingPages-Oct2'!A16:F, len(LandingPages-Oct2'!A16:A))}

No need for query at all; query string "select *" means you are not really querying.

Alternatively, you can also use query to remove the empty rows

=QUERY({'LandingPages-Oct1'!A16:F; 'LandingPages-Oct2'!A16:F}, "where Col1 <>''")
Jef Gielen

In regards to:

^ Semicolon separating sheets causes the first sheet of data to appear, but not the second

Reason for me why this did not work initially, was that the format of the two tables were not the same. After pasting the same format this worked again.

Brando313

Figured out to how sort by column using the formula above:

=SORT(QUERY({'LandingPages-Oct1'!A16:F; 'LandingPages-Oct2'!A16:F}, "where Col1 <>''"),1,TRUE)

This will sort by column 1.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!