• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Sum Product - Error

Hello,

you could use INDEX/MATCH in these one:

try below array formula (ctrl+shift+enter) in U4:

=INDEX($C$4:$M$75;MATCH(R4&S4;$A$4:$A$75&$B$4:$B$75;0);MATCH($C$3:$M$3;$T4;0))

KR
 
Hi to all!

Two more options:
=INDEX($C$4:$K$40,MATCH(R4&S4,INDEX($A$4:$A$40&$B$4:$B$40,),),MATCH(T4,$C$3:$K$3,))

=SUMIFS(INDEX($C$4:$K$40,,MATCH(T4,$C$3:$K$3,)),$A$4:$A$40,R4,$B$4:$B$40,S4)

Blessings!
 
Hey,

these different approaches are awesome :)

I made a typo in my formula, the right INDEX/MATCH formula is:

=INDEX($C$4:$M$75,MATCH(R4&S4,$A$4:$A$75&$B$4:$B$75,0),MATCH(T4,$C$3:$M$3,0))

KR
 
Back
Top