Home > OS >  Retrieve only durations with negative numbers
Retrieve only durations with negative numbers

Time:01-29

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.

enter image description here

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)

  •  Tags:  
  • Related