If I have an array of numbers in Excel like below:
-5 1 4 -2
I need to return -5 and -2 (each in a separate cell).
The =SMALL(array, 1) does not work because the numbers in my array are less than 1. Is there a workaround so I can traverse trough the array and return the two smallest numbers?