我有3个工作表名称'alex','shawn'和'taki'.ALL的列相同但行号不同
在新工作表(仪表板)上,我希望查询在其中显示列A至F,但条件为col L = NOT'case close'和col A = date range(我放在c23和e23处)< / p>
答案 0 :(得分:0)
尝试一下:
=QUERY({alex!A:Z; shawn!A:Z; taki!A:Z},
"select Col1,Col2,Col3,Col4,Col5,Col6
where not Col12 = 'case closed'
and Col1 <= date '"&TEXT(C23, "yyyy-mm-dd")&"'
and Col1 >= date '"&TEXT(E23, "yyyy-mm-dd")&"'", 0)