I'm currently using a helper column with this math, which works. Then I sum the results of the helper column to get my result.
=IF(AND(C15="Sell Put",M15="Open"),F15*100*E15,"")
C15 & M15 = Criteria
F15 & E15 & 100 = Multiplication factors (contracts x 100 x $/contract)
I found a SUMIFS function for basic sums of rows with multiple criteria, which is fantastic, and I was able to eliminate 2 of my 3 helper columns. Is there a way to do similarly, but while within each row: multiply values of 2 different columns and a constant (3 items), and include 2 criteria?
This would be using basic Excel. I could probably use VBA in a pinch, but it's been years since I've done that. What I have works, just wondering if there's something I could use.
Thank you very much.
=IF(AND(C15="Sell Put",M15="Open"),F15*100*E15,"")
C15 & M15 = Criteria
F15 & E15 & 100 = Multiplication factors (contracts x 100 x $/contract)
I found a SUMIFS function for basic sums of rows with multiple criteria, which is fantastic, and I was able to eliminate 2 of my 3 helper columns. Is there a way to do similarly, but while within each row: multiply values of 2 different columns and a constant (3 items), and include 2 criteria?
This would be using basic Excel. I could probably use VBA in a pinch, but it's been years since I've done that. What I have works, just wondering if there's something I could use.
Thank you very much.