How I can get data from many sheets? In documentation Reference data from other sheets is an example
=Sheet1!A1
I wrote test query and it's works
=Query(otherSheet!A1:P999, "select A, B, C")
But I want get data with one query from many tables. is it possible? How I can?
---UPDATE---
For example I have 2 sheet as clients and orders, and I want get username who buy some product last month. I found solutions, for example I get cient_id from order table, and then I get username from clients table
=Unique(Query(orders!A1:P999, "select D WHERE I = 'paid' and J > date '2010-01-15' LABEL D 'client_id' "))
=vlookup(A2,contacts!B:C,2,false)
You can write it with single query?