SUM & SUMIFS

I have columns named:

  1. Item Description (That contains within a text (Z123)
  2. Quantity
  3. 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!

Tags:

Answers

  • Brent Wilson
    Brent Wilson ✭✭✭✭✭

    @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

  • Brent Wilson
    Brent Wilson ✭✭✭✭✭

    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

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!