CountIf? With multiple Criteria.

Tedmando

New Member
Joined
May 18, 2011
Messages
7
›I am trying to use some raw data and organize it into a chart.

This is how the Raw Data Looks

>



1) "1" means they have been validated, and is the first criteria that they need to meet in order to be counted.
2) Then I want to take the raw age and group it into ages. "16-24 yr olds." 3) Lastly I want to take the state and group it into a region. "West Coast"

This is how I want my chart looks like.

>


so for the west coast I want California and Oregon counted, and only if there is a "1" in the validation, and if it meets the age range.

I've tried Countifs, but I am having difficulty. Any help would be greatly appreciated!!
 
Last edited:

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
You can use COUNTIFS something like this

=SUM(COUNTIFS(A:A,">=16",A:A,"<=24",C:C,{"Oregon","California"},D:D,1))
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,850
Members
452,948
Latest member
UsmanAli786

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