• 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.

Index with 3 match criteria

Please refer to the attached file, Index3Match tab. I am trying to pull a value from the list in the green field by using a mix of values in the 2 left columns and row (lists in the orange cells)

I was trying an Index(Match(Match but am unsure of how to tie in the 3rd Match.

Thanks
 

Attachments

G13 (Array Formula)

=INDEX($C$2:$P$9,MATCH(A13&C13,A2:A9&B2:B9,0),MATCH(E13,D1: P1,0))

CSE
 
rggg... the above formula has : P1 << no space between the : and P and it keeps making it an emoticon
 
G13 (Array Formula)

=INDEX($C$2:$P$9,MATCH(A13&C13,A2:A9&B2:B9,0),MATCH(E13,D1: P1,0))

CSE

1] I think the above array formula is a typo, and should read as ….

=INDEX($C$2:$P$9,MATCH(A13&C13,A2:A9&B2:B9,0),MATCH(E13,C1: P1,0))

2] And, try this non-array option :

=SUMIFS(INDEX(C2: D9,0,MATCH(E13,C1: P1,0)),A2:A9,A13,B2:B9,C13)

Regards
Bosco
 
Back
Top