Looking to count specific cells IF another cell is greater than or equal to 15

HeRoseInThree

Board Regular
Joined
Jan 11, 2018
Messages
103
The names I need to count are in column e and the vales of numbers are in r.
I tried =COUNTIF(E:E,"r2>=15")

Any help would be appreciated.
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
HeRoseInThree, Good evening.

Try to use:

=COUNTIFS(E1:E1000,"<>0", R1:R1000,">=15")

Is that what you want?
I hope it helps.
 
Upvote 0
I appreciate the quick reply, however it isn't quite what I am looking for.
I need to count the number of times a specific driver speeds at 15 mph or more.
 
Upvote 0
To count the number of times that John goes at 15 mph or more

=COUNTIFS(E:E,"John",R:R,">=15")

so if you want to copy that down a column to get counts for each name then it can be

=COUNTIFS(E:E,E2,R:R,">=15")
 
Upvote 0
HeRoseInThree,

Both of the suggested formulas work for this purpose.

Just set them with the desired parameter.

1) =COUNTIFS(E1:E1000, "SPECIFIC DRIVER NAME", F1:F1000,">=15")

2) =sumproduct((e:e="SPECIFIC DRIVER NAME")*(f:f>=15))

I hope it helps.
 
Upvote 0

Forum statistics

Threads
1,223,883
Messages
6,175,168
Members
452,615
Latest member
bogeys2birdies

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