Min If Formula to Ignore 0

bbalch

Board Regular
Joined
Feb 23, 2015
Messages
61
I have a table with golf scores for a junior golf tournament with the following columns: name (A2:A101), age (B2:B101), round 1 score (C2:C101), round 2 score (D2:D101), and round 3 score (E2:E101). All golfers participated in rounds 1 and 2 and half the field competed in round 3. The ages range from 10 – 18.
I want to a create formula to find the lowest score from all three rounds for golfers under the age of 13.

I’m attempting to use the array formula below but it returns a 0 since half the scores in column E are blank.

{=MIN(IF(B2:B101<13,(C2:E101)))}

Any suggestions on how to modify this formula to ignore 0’s or blanks? Or a different formula that will do the trick?
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Is it only column E that will have blanks?

If so, then perhaps the below formula would work for you?

Code:
=MIN(MIN(IF($B$2:$B$101<13,$C$2:$C$101)),MIN(IF($B$2:$B$101<13,$D$2:$D$101)),MIN(IF(ISNUMBER($E$2:$E$101),IF($B$2:$B$101<13,$E$2:$E$101))))
 
Last edited:
Upvote 0
Though, instead I'd probably setup the table with some helper cells like below.

The below formulas should account for any rounds with any person missing a round. Just change the range of the formulas.

And please ignore asterisks if they appear here, that is just a copy/paste issue, those cells are actually blank.

Sheet1

ABCDEFGH
1NameAgeRound 1Round 2Round 3 Round?Minimum
2Bob1818322 Round 131
3Tom115681 Round 24
4Kathy141910046 Round 343
5Sandra162112 Minimum4
6Tony134684
7Peter15187647
8Paul10659049
9Mary115193
10Alessandra11314544
11Barbara104028
12Jacob11563243
13Jasmine17496521
14Kyle119999
15Kevin1144797
16Harry12734
17Rebecca1476118
18Tiffany128488
19Lisa15483832
20Larry16676

<colgroup><col style="width: 30px; font-weight: bold;"><col style="width: 75px;"><col style="width: 58px;"><col style="width: 62px;"><col style="width: 62px;"><col style="width: 62px;"><col style="width: 40px;"><col style="width: 64px;"><col style="width: 64px;"></colgroup><tbody>
</tbody>

Spreadsheet Formulas
CellFormula
H2{=MIN(IF($B$2:$B$20<13,IF(ISNUMBER($C$2:$C$20),$C$2:$C$20)))}
H3{=MIN(IF($B$2:$B$20<13,IF(ISNUMBER($D$2:$D$20),$D$2:$D$20)))}
H4{=MIN(IF($B$2:$B$20<13,IF(ISNUMBER($E$2:$E$20),$E$2:$E$20)))}
H5=MIN(H2:H4)

<tbody>
</tbody>
Formula Array:
Produce enclosing
{ } by entering
formula with CTRL+SHIFT+ENTER!

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,878
Messages
6,122,062
Members
449,064
Latest member
scottdog129

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