COUNTIFS problem

The Jackal

New Member
Joined
May 30, 2018
Messages
13
Hi,

I am trying to count how many times a specific person has scored 100+, 140+ and 180 in multiple dart matches.
Names are in column A and scores are in B3 to S25.
I have a table and tried this =COUNTIFS($A$3:$A$25, Y3, $B$3:$S$25, ">99",$B$3:$S$25,"<140")
Y3 being where the persons name is but i get #VALUE!

Can any of you clever people help a thicko lol

Sorry i cant upload a mini sheet as work comp wont allow.
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
=SUMPRODUCT(($A$3:$A$25=Y3)*($B$3:$S$25=180))

=SUMPRODUCT(($A$3:$A$25=Y3)*($B$3:$S$25>99)*($B$3:$S$25<140))
not will not count if = to 99 or 140
to include those numbers
=SUMPRODUCT(($A$3:$A$25=Y3)*($B$3:$S$25>=99)*($B$3:$S$25<=140))

formula in column Z and AA

Book3
ABCDEFGHIJKLMNOPQRSTUVWXYZAA
1
299-140180
3name113018020180125180name123
4name2251752517525175name1431
5name3301703017030170
6name4351653516535165
7name5401604016040160
8name6451554515545155
9name7501505015050150
10name8551455514555145
11name9601406014060140
12name10651356513565135
13name11701307013070130
14name12751257512575125
15name13801208012080120
16name141801158511585115
17name15901109011090110
18name16951059510595105
19name17100100100100100100
20name18105951059510595
21name19110901109011090
22name20115851158511585
23name21120801208012080
24name22125751257512575
25name23130701307013070
26
Sheet1
Cell Formulas
RangeFormula
Z3:Z4Z3=SUMPRODUCT(($A$3:$A$25=Y3)*($B$3:$S$25>99)*($B$3:$S$25<140))
AA3:AA4AA3=SUMPRODUCT(($A$3:$A$25=Y3)*($B$3:$S$25=180))
 
Upvote 1
Solution

Forum statistics

Threads
1,215,219
Messages
6,123,680
Members
449,116
Latest member
HypnoFant

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