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

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
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,737
Messages
6,132,436
Members
449,727
Latest member
Aby2024

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