I am trying to merge and filter ranges (second their date) from different sheets into a master sheet. When using a single range it works but when adding a second range from a different sheet, like in this formula:
=QUERY({'Sheet1'!A3:I14 ; 'Sheet2'!A3:I14};"SELECT A, C, D, E, F, G, H, I WHERE (A >= date '" & text(today();"yyyy-MM-dd") & "' AND A <= date '" & text(today()+9;"yyyy-MM-dd") & "')"; false)
it gives the following error: Unable to parse query string for Function QUERY parameter 2: NO_COLUMN: A.
What is the correct syntaxis to make the formula work?