SUMIFS when a column is not blank

Options

I have multiple sheets that I am working from where I need to sumifs a column only if another column in the same row is not blank.

This is what I want to do:

If {Column C} is Blank or more than 0, Sumifs {Column B}, if {Column A} is checked

This is what I've tried:

=IF(SUMIFS({Column C}) < 0, "", SUMIFS({Column B}, {Column A}, 1))

Please help

Best Answer

  • Vince_S
    Vince_S ✭✭
    edited 06/08/22 Answer ✓
    Options

    Check your formula - you have it set to Column C<0 instead of >.

    If I understand correctly it should work with a Sumifs statement:

    =SUMIFS(ColumnB:ColumnB, [Column A]:[Column A], 1, [Column C]:[Column C],>0)

    You are summing the vaules in Column B if the row in Column A=1 (or checked) and column C is

    Vince

Answers

  • Vince_S
    Vince_S ✭✭
    edited 06/08/22 Answer ✓
    Options

    Check your formula - you have it set to Column C<0 instead of >.

    If I understand correctly it should work with a Sumifs statement:

    =SUMIFS(ColumnB:ColumnB, [Column A]:[Column A], 1, [Column C]:[Column C],>0)

    You are summing the vaules in Column B if the row in Column A=1 (or checked) and column C is

    Vince

  • @Diana
    @Diana ✭✭
    Options

    Thank you! The formula was easier than I was thinking it was going to be.

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!