Count numbers from 1-150

Killer17

Active Member
Joined
Jun 30, 2007
Messages
258
Hey all

Need help in creating a formula that will count the number of times a number within the range from 1-150 from Cell D3:F23

The amount should show is 3
Excel Workbook
DEF
3202245199
4212193244
5216183211
6156172182
7194185156
8203180189
9213179188
10233244204
11192203246
12214227180
13144210189
14158164157
15193152201
16150180140
17225211162
18220215201
19152155200
20189235159
21190228187
22197224296
23187182213
Robert
Excel 2007

Thanks
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Hey all

Need help in creating a formula that will count the number of times a number within the range from 1-150 from Cell D3:F23

The amount should show is 3

Excel Workbook
DEF
3202245199
4212193244
5216183211
6156172182
7194185156
8203180189
9213179188
10233244204
11192203246
12214227180
13144210189
14158164157
15193152201
16150180140
17225211162
18220215201
19152155200
20189235159
21190228187
22197224296
23187182213
Robert
Excel 2007



Thanks
One way...

Use cells to hold the criteria:
  • A1 = 1
  • B1 = 150
Then:

=COUNTIF(D3:F23,">="&A1)-COUNTIF(D3:F23,">"&B1)
 
Upvote 0
Not sure if I understood your problem or not, but just an observation. If your data set lower limit is always positive, than you can use this as an alternative. If my observation is not correct then ignore, thanks

=COUNTIF(A3:C23,"<=150") note: use this only if the lowest number is not zero or negative.
 
Upvote 0

Forum statistics

Threads
1,224,574
Messages
6,179,634
Members
452,934
Latest member
Jdsonne31

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