2
Your logic is almost right, only had a small error when implementing, see the example:
=SOMASE(rage; ">1000")
Example:
=SOMASE(B51:B60; ">1000")
Where range
is where you want to add, and the ">10"
is the exclusion parameter.
2
3
Your logic is almost right, only had a small error when implementing, see the example:
=SOMASE(rage; ">1000")
Example:
=SOMASE(B51:B60; ">1000")
Where range
is where you want to add, and the ">10"
is the exclusion parameter.
2
Another way to do the formula, in addition to what @Bulfaitelo mentioned, is to add a "&" between the comparison signal and the value area.
Example:
=SOMASE(B51:B60; ">" & 600)
With this you can reference the value of the criterion for a range.
Example of a sum of values greater than the average of the same range:
=SOMASE( B51:B60; ">" & MÉDIA( B51:B60 ) )
Browser other questions tagged excel
You are not signed in. Login or sign up in order to post.