Retrieve only durations with negative numbers

Viewed 44

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

2 Answers

You can try =QUERY(G5:H8,"SELECT A,B WHERE B < 0",1)

try like this:

=FILTER(A:B; B:B<0)
Related