I have a column with two value ranges, specifically 0-30000 and 60000+ from which I need to extract the smallest two values in the 60000 range.
The only way I have found so far to to use AutoFilter
to produce the subset of the required data to extract. My problem is that the Autofilter function does not return a reference to a range. If it did I could use the SMALL
function to obtain the values I am looking for.
How can I do the filtering and extraction of the two smallest values from this filtered data?