Nested if formula problem

sitewolf

Active Member
Joined
May 4, 2012
Messages
304
So I'm trying to figure out a formula, not VBA, to determine if a basketball stat line includes a triple double.
In other words, a formula that looks at 5 different numbers and tells me if at least 3 of them are 10+
I've done nested ifs looking at the same number with multiple criteria, but I'm not wrapping my head around one that looks at multiple numbers with one criteria.

More specifically
Player A had 12 points, 10 rebounds, 12 assists, 3 steals, and 2 blocks
Player B had 23 points, 9 rebounds, 10 assists, 2 steals, and 2 blocks

What formula yields a 1 for Player A and 0 for Player B?
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
F2 =IF(COUNTIF(A2:E2,">="&10)>=3,"TRIPLE DOUBLE","")

1608151338025.png
 
Upvote 0
How about
+Fluff v2.xlsm
ABCDEFG
1Name
2Player A121012321
3Player B23910220
Master
Cell Formulas
RangeFormula
G2:G3G2=N(COUNTIF(B2:F2,">=10")>2)
 
Upvote 0
Solution
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,701
Members
448,980
Latest member
CarlosWin

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