I want to use this formula in google sheets:
=QUERY({sheet1!A2:D;sheet2!A2:D},"select * where Col4>=65 order by Col4 desc")
but I get "Formula parse error" basically I want to get data from multiple sheets tabs and display it into one sheet but I want the data to be sorted and only get results where Col4 is >= to 65 or even better it would be to only display the top 3 results from each tab
I tried that by using
=sortn({sheet1!A2:D;sheet2!A2:D};5;0;4;0)
but this display top 5 results from both tabs overall but I would like if I could get top 3 results from each tab.