[Solved] Sum a criteria that has blank values in a column

Duane

New member
Good day all

I hop eyou can help. I have a large dataset. My column G has to be completed by users with feedback.

I would like to sum the value of blank cells based on my various criterias in column J.

hope someone can help me

Thanks
 

Attachments

  • sum blank cells with criteria.xlsx
    11.3 KB · Views: 2
Hello Duane,
Thanks for sharing your problem with us. I understand that you want to count the number of no-feedback cells (i.e. blank cells) for each criterion (Regional values) in your dataset. We can accomplish this by using the COUNTIFS function. To demonstrate the solution to your problem I have used a dataset similar to what you had provided.

FQ 237 - 1.png

Tips: In such large datasets, we can apply the UNIQUE function to determine all criteria (i.e. Regional values) present in the dataset.

Next, I applied the following formula in L3 and dragged down the Fill Handle icon to copy the formula in the remaining cells.
=COUNTIFS($A$3:$A$25,J3,$G$3:$G$25,"")

FQ 237 - 2.png

I hope this solution resolves your problem. Let us know your feedback. The workbook used for this solution is attached below.

Regards,
Seemanto Saha
ExcelDemy​
 

Attachments

  • sum blank cells with criteria.xlsx
    13.2 KB · Views: 1
Good day,

Thank you for the feedback - is it possible to get the actual value from this result which is in column D?

Thank you again

Duane
 
Dear Duane,
Thanks for your feedback. To return the sum of the cells from Column D for which the feedback cells are empty and match is available Regional criteria, you can use the SUMIFS function.

Insert the following formula in L3 and drag down the Fill Handle icon to copy the formula in the remaining cells.

=SUMIFS($D$3:$D$25,$A$3:$A$25,J3,$G$3:$G$25,"")

FQ 237 - 3.png

However, if you want to list the actual values without calculating the sum, then you can apply a combination of TEXTJOIN and FILTER functions.

Insert the following formula in L3 and drag down the Fill Handle icon to copy the formula in the remaining cells.

=TEXTJOIN(", ",TRUE,FILTER($D$3:$D$25,($A$3:$A$25=J3)*($G$3:$G$25="")))


FQ 237 - 4.png

Hopefully, this solution will solve your problem. Let us know your feedback. The workbook used for this solution is attached below.

Regards,
Seemanto Saha
ExcelDemy
 

Attachments

  • sum blank cells with criteria.xlsx
    21.2 KB · Views: 1

Online statistics

Members online
1
Guests online
25
Total visitors
26

Forum statistics

Threads
303
Messages
1,331
Members
550
Latest member
JasonRip
Top