Would like to retrieve data from range H, where any duration has negative number. Please bear in mind that I actually have over 10k rows and this is just an example.
CodePudding user response:
try like this:
=FILTER(A:B; B:B<0)
CodePudding user response:
You can try =QUERY(G5:H8,"SELECT A,B WHERE B < 0",1)

