If the result column is Number then (But the Matches will get accumulated)
Formula:
=SUMPRODUCT((A2:A7=E3)*(B2:B7=F2),C2:C7)
Or
Formula:
=SUMIFS(C2:C7,A2:A7,E3,B2:B7,F2)
If the result is Number or Text then it retrieves first match - Array Formula - Requires CTRL+SHIFT+ENTER
Formula:
=IFERROR(INDEX(C2:C7,MATCH(1,(A2:A7=E3)*(B2:B7=F2),0)),"")
Will work on both number & Text result but the latest match will be arrived as result - Non Array
Formula:
=IFERROR(LOOKUP(2,1/(A2:A7&B2:B7=E3&F2),C2:C7),"")
Array formulas need to be entered using the key combination of CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT key then hit ENTER.
Bookmarks