Conditional Statement for specific values

jpiscit1

New Member
Joined
Nov 3, 2002
Messages
2
I am looking to write a statement that counts how many number fall between a giving set of criteria. For example:

Greater than 300 but less than 350.
COUNT = x

Can anyone help?
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
On 2002-11-04 15:00, jpiscit1 wrote:
I am looking to write a statement that counts how many number fall between a giving set of criteria. For example:

Greater than 300 but less than 350.
COUNT = x

Can anyone help?

Hi - welcome to the board!

one of many options:

=sumproduct((range>300)*(range<350))

see
http://mrexcel.com/board/viewtopic.php?topic=20900&forum=2

for more info (follow the link to Aladin's post)

paddy
 
Upvote 0
On 2002-11-04 15:00, jpiscit1 wrote:
I am looking to write a statement that counts how many number fall between a giving set of criteria. For example:

Greater than 300 but less than 350.
COUNT = x

Can anyone help?

=COUNTIF($A$2:$A$100,">"&E1)-COUNTIF($A$2:$A$100,">="&F1)

where A2:A100 houses the data of interest, E1 a value like 300, and F1 a value like 350, always with E1 < F1.
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,707
Members
448,981
Latest member
recon11bucks

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