Count and Sum between Options

Copper Contributor

Hi All,

 

I have a sheet with 2 columns, one for Country and one to represent a status, either status A or status B.  I would like to have a formula that can sort through and give me the number of A statuses and the number of B statuses per country. So far, I have been unable to come up with anything.  Any ideas?

 

Thanks!

-O

4 Replies

@O_edwardsKPPB-9 

 

Create a pivot table.

Country in rows area.

Status in rows area (or columns area) and in value area.

 

Use COUNTIFS like this:
=COUNTIFS(Countries,Country,
Statuses,Status)

Hi All,

 

Thanks for the replies.  I am having some issues with the Countif function.  Attached below is an example of a chart we get (though they are usually about 200 rows!).  Would the countif function be able to tell me BE has 1 issues, CH has 1 allowed and 1 issued, etc.

COUNTRYSTATUS
BEIssued
CHAllowed
CHIssued
DEIssued
EPIssued
JMPending
ESIssued

@Twifoo 

@O_edwardsKPPB-9 , for this simple model

image.png

you may build PivotTable (to the right) with couple of clicks.

 

For the formula you first to build the list of all countries and list of all issues (left column and top row in the range at bottom), after that in top left column

=COUNTIFS($A$2:$A$8,$D11,$B$2:$B$8,E$10)

and drag it down and to the right.