Spikenaylor

Board Regular
Joined
Apr 14, 2013
Messages
115
Office Version
  1. 365
Platform
  1. Windows
my table is like below

I need to count how many r there are for all process only for Quality (5)
I need to count how many r there are for all process only for SHE (2)

etc

Many thanks for any help


ProcessDay010203040506070809
Process 1Qualitynrgarggag
Process 1SHEnrggaggag
Process 2Qualityngggrrgrg
Process 2SHEnggggagrg

<tbody>
</tbody>
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
something like...

Unknown
ABCDEFGHIJK
1ProcessDay123456789
2Process 1Qualitynrgarggag
3Process 1SHEnrggaggag
4Process 2Qualityngggrrgrg
5Process 2SHEnggggagrg
6
75
82

<tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
B7=SUMPRODUCT((B2:B5="Quality")*(C2:K5="r"))
B8=SUMPRODUCT((B2:B5="SHE")*(C2:K5="r"))

<tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
I am getting old. I have used this before and forgotten.
Many thanks
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,732
Members
448,987
Latest member
marion_davis

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