SUMIFS with multiple OR criteria??

Hi Experts.

I need to do some $$ calculations. I am working on a summary page I need the sum of the column Funding Committed, ignoring the rows where Pre-Approved or Declined are checked (they move the calc to another column). Something like:

=sumifs({Committed:Committed}, {Pre-Approved:PreApproved},1, OR {Declined:Declined}, 1)

I cannot figure out how to make the OR work, and it cannot be an AND. Any help would be appreciated.

Best Answer

  • Genevieve P.
    Genevieve P. Employee
    edited 01/09/25 Answer ✓

    Hiya!
    Happy to help with the alternate formula 🙂 @Kim Stephens

    What you can do here is find the SUM for if the checkbox is not checked in one column, then the SUM for if it's not checked in the other column, then subtract the SUM when the row has both un-checked (otherwise we'd have duplicate numbers).

    So:

    =(SUMIFS(first checkbox) + SUMIFS(second checkbox)) - SUMIFS(both checkboxes in the same row)

    Or in your case:

    =(SUMIFS({Committed}, {PreApproved}, 0) + SUMIFS({Committed}, {Declined}, 0)) - SUMIFS({Committed}, {PreApproved}, 0, {Declined}, 0)

    Let me know if this makes sense and will work for you!

    Cheers,
    Genevieve

    Join us for Jumpstart 2025 with Community on 23 January (in two time zones)! 🎉 Register here.

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!