Forum Discussion
nataleee1460
Jun 01, 2021Copper Contributor
SUMPRODUCT WITH 2 CONDITIONS
Hi everybody I would really appreciated your help. I can't get the formula right 😞 Basically I want to know the average buy and sell price for BTC (and then various other tickers) from all t...
- Jun 01, 2021
In SUMPRODUCT, you cannot filter using AND the way you did. Instead, you have to include the "filter" inside the function. So, to get the weighted average, use
=SUMPRODUCT(--(B2:B30=B33),--(A2:A30=A33),C2:C30,D2:D30)/SUMPRODUCT(--(B2:B30=B33),--(A2:A30=A33),C2:C30)The double negation converts the boolean result into numbers (1 for TRUE and 0 for FALSE).
nataleee1460
Jun 02, 2021Copper Contributor
Thank you so much for your response! That does indeed work! I've never used those hyphens before. Thank you again :))
tusharm10
Jun 02, 2021Brass Contributor
You are welcome.