Reputation: 89
Is it possible to create a pivot table that consolidates data from multiple sheets?
Upvotes: 3
Views: 5230
Reputation: 1
no, it's not. first, you will need to gather your data from all sheets with a query and then create your pivot table:
=QUERY({Sheet1!A:Z; Sheet2!A:Z; Shet3!A:Z}, "select * where Col1 is not null", 0)
Upvotes: 2