You can use an "array formula" such as
=INDEX('Sheet2'!B:B,MATCH(1,(A1='Sheet2'!A:A)*(C1='Sheet2'!C:C),0))
CTRL + SHIFT + ENTER
.... or you can add another INDEX function so that it does not need to enter an "array", i.e.
=INDEX('Sheet2'!B:B,MATCH(1,INDEX((A1='Sheet2'!A:A)*(C1='Sheet2'!C:C),0),0))
or in another way - use LOOKUP, like this
=LOOKUP(2,1/(A1='Sheet2'!A:A)/(C1='Sheet2'!C:C),'Sheet2'!B:B)
This last method will give you a last match if there is more than one ...
source share