arrays - Index/Match with three criteria -
i have searched , searched , searched , searched, can find solutions index/match 2 criteria.
does have solution index/match 3 criteria?
as sample of actual data, index/match year, type , name find data in month column
you can match unlimited number of criteria using sumproduct() find proper row:
=index(d2:d9,sumproduct((a2:a9=2015)*(b2:b9="revenue")*(c2:c9="name 1")*row(2:9))-1)
edit#1:
scott's comment correct! advantagesof sumproduct() approach is not array formula , can expanded handle many criteria. disadvantage work if there 1 matching row.
the use of sumproduct() explained here:
Comments
Post a Comment