I currently have 2 Google Sheets with their own respective tables, Table1 and Table2.
Table1 is located in the example below from Column A to Column C. This was Query 1.
Table2 is located from E to G. This was Query 2.
My desired outcome is Table3 located in Column I to K.
Both of these table have been imported from separate sheets into my newly created sheet using 2 different Queries.
Here is an example of the code that I used:
=Query(IMPORTRANGE("url_example1", "Sheet1!A1:Z"), "select Col1, Col2, Col7", 1)
And another:
=Query(IMPORTRANGE("url_example2", "Sheet2!A1:Z"), "select Col1, Col2, Col7", 1)
Is there a way to combine both tables chronologically with 1 Query?
If not, what is the best way to accomplish this goal? Any help would be greatly appreciated.
Again my hope is to combine 2 Google Sheets Query tables into one table and have the data sorted chronologically. Thanks for your time.