Counting those cells of a spicific range of multiple worksheets which can pass a logic

elmoh3n

New Member
Joined
Dec 14, 2013
Messages
3
Hello!!
I have an excel workbook which includes 27 worksheets. I want to count "F" column cells of those worksheet, based on those entries. I want to know how many of those are less than 10, how many of those are between 10-20 and how many of those are more than 20.
Can any body help me, please!?
Special thanks in advance.
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
you'd need to make a list of the sheetnames somewhere out of the way.


Excel 2012
ABCDE
1Sheet Names< 10> 10 <= 20> 20
2sheet1541
3sheet2
4sheet3

<tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
C2=SUMPRODUCT(COUNTIF(INDIRECT(" ' "&A2:A4&" '!F:F"),10))
D2=SUMPRODUCT(COUNTIFS(INDIRECT(" ' "&A2:$A4&" '!F:F"),">10",INDIRECT(" ' "&A2:A4&" '!F:F"),"<=20"))
E2=SUMPRODUCT(COUNTIF(INDIRECT(" ' "&A2:A4&" '!F:F"),">20"))

<tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
you'd need to make a list of the sheetnames somewhere out of the way.


Excel 2012
ABCDE
1Sheet Names< 10> 10 <= 20> 20
2sheet1541
3sheet2
4sheet3

<tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
C2=SUMPRODUCT(COUNTIF(INDIRECT(" ' "&A2:A4&" '!F:F"),10))
D2=SUMPRODUCT(COUNTIFS(INDIRECT(" ' "&A2:$A4&" '!F:F"),">10",INDIRECT(" ' "&A2:A4&" '!F:F"),"<=20"))
E2=SUMPRODUCT(COUNTIF(INDIRECT(" ' "&A2:A4&" '!F:F"),">20"))

<tbody>
</tbody>

<tbody>
</tbody>
Ah, thank you, very interesting.
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,662
Members
449,462
Latest member
Chislobog

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