Answer the question
In order to leave comments, you need to log in
Is it possible to transfer data from several sheets to one in the QUERY function?
There is data on 5 sheets, I made a formula, under the conditions of which certain columns are transferred to the final sheet, it looks like this:
=QUERY('Неделя 1(закрыта)'!A2:J1003; "select B, F where(J='Заявка закрыта')")
Answer the question
In order to leave comments, you need to log in
Use range concatenation and Col notation
=QUERY(
{'Неделя 1(закрыта)'!A2:J1003;'Неделя 2(закрыта)'!A2:J1003;'Неделя 3(закрыта)'!A2:J1003};
"select Col2, Col6 where(Col10='Заявка закрыта')";
0
)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question