Countif formula with 3 criteria selection

sdm2211

New Member
Joined
Nov 24, 2014
Messages
23
I have below data
A
B
C
D
Status
Assigned Group
Response
Resolve
Closed
Java
Met
Missed
Cancelled
C++
Met
Missed
Closed
C++
Missed
Met
Closed
SAP
Missed
Met
Closed
SAP
Met
Met
Cancelled
Java
Missed
Met
Cancelled
SAP
Met
Met

<tbody>
</tbody>

Pivot Result of the above
Status
Closed
Count of Status
Column Labels
Row Labels
Met
Missed
Grand Total
C++
1
1
Java
1
1
SAP
2
2
Grand Total
3
1
4

<tbody>
</tbody>

I want above result not in pivot but with formula like countifs etc.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
StatusAssigned GroupResponseResolve
ClosedJavaMetMissed
CancelledC++MetMissed
ClosedC++MissedMetclosedclosedcancelledcancelled
ClosedSAPMissedMetmetmissedmetmissed
ClosedSAPMetMetC++1001
CancelledJavaMissedMetJava0110
CancelledSAPMetMetSAP2010
Pivot Result of the above
StatusClosed
Count of StatusColumn Labels
Row LabelsMetMissedGrand Total
C++11this is a simple sumproduct table
Java11
SAP22the top left 1 obtained by
Grand Total314
=SUMPRODUCT(($A$2:$A$8=H$4)*($B$2:$B$8=$G6)*($D$2:$D$8=H$5))
easy to add sub totals to it

<colgroup><col><col><col><col><col span="10"></colgroup><tbody>
</tbody>
 
Upvote 0
A
B
C
D
E
1
statusAssigned GroupResponseResolve
2
ClosedJavaMetMissed
3
CancelledC++MetMissed
4
ClosedC++MissedMet
5
ClosedSAPMissedMet
6
ClosedSAPMetMet
7
CancelledJavaMissedMet
8
CancelledSAPMetMet
9
10
11
StatusClosed
12
13
Row LabelsMetMissedGrand Total
14
C++
1​
1​
15
Java
1​
1​
16
SAP
2​
2​
17
Grand Total
3​
1​
4​

<tbody>
</tbody>


b14=
COUNTIFS($A$2:$A$8,$B$11,$B$2:$B$8,$A14,$D$2:$D$8,B$13) copy across and down

di14=SUM(B14:C14) copy down

b17==SUM(B14:B16) copy across until missed

hide 0 custom formating=[=0]""
 
Upvote 0

Forum statistics

Threads
1,215,061
Messages
6,122,921
Members
449,094
Latest member
teemeren

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