Reputation: 742
I found hard to gave a good description of my question due to the complexity of my operation, I'll try to explain better:
I have this table what I need to achieve is that:
Upvotes: 0
Views: 84
Reputation: 36840
Assuming your table name is Table1
Total column name is Total
and column with data si, name is SI
. Then use following formula in any cell beyond table cells.
=SUMIF(Table1[SI],"si",Table1[Total])
Upvotes: 0
Reputation:
What you are looking for is =SUMIFS(F:F, G:G, "si")
. Add this code to any cell on the same sheet, outside the verified ('F' and 'G') columns.
Please note I assume the columns on the screenshot are 'A' to 'G'. If not, change the referenced cols in the formula accordingly.
Hope this helps!
Upvotes: 1