We're trying to display the bottom 10 results out of a data set. We don't want 0's to be part of the results. The goal is to not display any results with a "0", but to skip them and go to the next lowest number.
Here is the formula we're trying to correct:
=INDEX(DashboardDataSheet!$B$1:$AZ$1, MATCH(1, (DashboardDataSheet!$B$5:$AZ$5 = SMALL(IF(DashboardDataSheet!$B$5:$AZ$5<>0, DashboardDataSheet!$B$5:$AZ$5), G23)) * (COUNTIF($B$22:H22, DashboardDataSheet!$B$1:$AZ$1) = 0), 0))
Bookmarks