COUNTIFS function is ignoring Empty cells, How to match criteria which include empty cells ??

govind_bhuse

New Member
Joined
Mar 16, 2015
Messages
15
Dear All,

I am trying to create a COUNTIFS formula which can fetch me the below desired result.
In below example one of the source cell is empty but I want countifs formula to consider this as a count.


NameMiddle NameSurnameCountFormulasI Want Answer
OmkarGovindBhuse1=COUNTIFS($B$3:$B$13,B3,$C$3:$C$13,C3,$D$3:$D$13,D3)
ManasviGovindBhuse1=COUNTIFS($B$3:$B$13,B4,$C$3:$C$13,C4,$D$3:$D$13,D4)
SwaroopIndrajit0=COUNTIFS($B$3:$B$13,B5,$C$3:$C$13,C5,$D$3:$D$13,D5)2
SwaroopIndrajit0=COUNTIFS($B$3:$B$13,B6,$C$3:$C$13,C6,$D$3:$D$13,D6)2
RupaliGovindBhuse3=COUNTIFS($B$3:$B$13,B7,$C$3:$C$13,C7,$D$3:$D$13,D7)
RupaliGovindBhuse3=COUNTIFS($B$3:$B$13,B8,$C$3:$C$13,C8,$D$3:$D$13,D8)
RupaliGovindBhuse3=COUNTIFS($B$3:$B$13,B9,$C$3:$C$13,C9,$D$3:$D$13,D9)
IndrajitBhuse0=COUNTIFS($B$3:$B$13,B10,$C$3:$C$13,C10,$D$3:$D$13,D10)2
IndrajitBhuse0=COUNTIFS($B$3:$B$13,B11,$C$3:$C$13,C11,$D$3:$D$13,D11)2
BhagyashriIndrajitBhuse2=COUNTIFS($B$3:$B$13,B12,$C$3:$C$13,C12,$D$3:$D$13,D12)
BhagyashriIndrajitBhuse2=COUNTIFS($B$3:$B$13,B13,$C$3:$C$13,C13,$D$3:$D$13,D13)

<colgroup><col><col><col><col><col><col></colgroup><tbody>
</tbody>


Kindly help me please. Thanks in advance.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Try this instead:

=SUMPRODUCT(($B$3:$B$13=B3)*($C$3:$C$13=C3)*($D$3:$D$13=A3))
 
Upvote 0
You are very welcome! :)

There was a typo, of course, and I should have typed this:

=SUMPRODUCT(($B$3:$B$13=B3)*($C$3:$C$13=C3)*($D$3:$D$13=D3))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,524
Messages
6,114,117
Members
448,549
Latest member
brianhfield

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top