Reputation: 725
I'm getting an error using this formula and can't figure out why...
Maybe because I don't have the column matching the date?
It should return 3.
Criteria range is G2:G4
Thank you
Upvotes: 0
Views: 798
Reputation: 8104
In your formula, INDEX returns a 4-Row by 3-Column array, hence the error. Try the following instead...
=INDEX(C2:E5,MATCH(1,INDEX((A2:A5=G2)*(B2:B5=G3),0),0),MATCH(G4,C1:E1,0))
Upvotes: 1