I want to set column E by Ascent order but I want rows that contain Zeros to remain right at the bottom. is this possible with the Query function?
Thanks in advance!
Try:
={query(B2:E,"where E>=1 order by E",0);query(B2:E,"where E=0",0)}
If you need to sort the second query, just add the relevant order by
.