Last time, I asked a question about how to do a sumproductIF for one condition and it works great. However, if there are two (or more condition), I would like to know how to write a sumproduct with multiple conditions style to avoid adding extra column.

The purpose of the calculation is to find the final total cost of T1 in USD with single step
Currently, the total cost of T1 in USD can be found by find the PriceQTY with currency conversion (step 1 in the picture), then find total of T1 by SUMIF(TYPE,”T1″,PriceQTY)
If you use SUMIF instead of LOOKUP then you don’t need to sort the currency table, i.e.
=SUMPRODUCT((A10:A24="T1")+0,B10:B24,D10:D24,SUMIF(B$4:$B$6,C10:C24,$C$4:$C$6))