SUM & SUMIFS
I have columns named:
- Item Description (That contains within a text (Z123)
- Quantity
- Received (Check Box)
Not sure if you can use SUM and SUMIFS in same formula
Looking for a result of ~~ Out of a total of (NUMBER) you have received(NUMBER).
Thanks!
Answers
-
@DanielGD Try this
= "Out of a total of "+ SUMIF(Description:Description, =Description@row, Quantity:Quantity) + " you have received " + SUMIFS(Quantity:Quantity, Description:Description, =Description@row, Received:Received, =1)
Brent C. Wilson, P.Eng, PMP, Prince2
Facilityy Professional Services Inc.
http://www.facilityy.com
-
This would give you % received
=(SUMIFS(Quantity:Quantity, Description:Description, =Description@row, Received:Received, =1)) / SUMIF(Description:Description, =Description@row, Quantity:Quantity)
Brent C. Wilson, P.Eng, PMP, Prince2
Facilityy Professional Services Inc.
http://www.facilityy.com
Help Article Resources
Categories
Check out the Formula Handbook template!