SUMIF

Copper Contributor

I am trying to get SUMIF to identify blank cells and than to add the monies from associated cells from another column.

2 Replies

@TRH33 

 

what kind of logic is that? you want to add all values that the criteria column is blank and apply it to associated cells in another column? can you share the data set to this range?

@TRH33 

=SUMIF (RangeToApplyCriteria, YourCriteria, sum_range)

Considering the B2:B20 the range where you may have "blank cells" and C2:C20 the range containing the values you want to sum, use the following formula

=SUMIF(B2:B20,"",C2:C20)

Find attachment