indexing - Excel INDEX MATCH IF greater than 10% -
i'm trying find efficient way summarise excel sheet results higher 10% included in separate sheet.
i know how use index match
, , need go 1 further , index match
when value
greater 10%'
see table, top sheet found in other tabs , summary sheet populate description greater 10%.
i'm sure there elegant way of doing this, , seem on complicate steps, breaking them down columns if, trying match, return referenced value, fail.
why can't use index match (0.1,c:c,-1)
? 0.1 10%. col e
, unformatted 'real' value 0.01-0.15. excel fails if try =match(0.1,e:e,-1)
.
this common mistake match
. use greater than
data set must arranged in descending order. likewise less than
data set must arranged in ascending order.
i'd suggest using following formula instead
=index(a:a, aggregate(15,6,row($a$3:$a$5)/($d$3:$d$5>0.1),row(1:1)))
which returns
Comments
Post a Comment