Golf Handicaps Values

Richard2542

Board Regular
Joined
Apr 27, 2017
Messages
102
Office Version
  1. 365
  2. 2013
I have a list of player names that are divided into 5 Flights (A to E). Each Flight is determined by dividing the list of names with associated scores into 20% or less of the total players. Each player has a previously calculated handicap. I need to find the largest handicap value within each Flight. This needs to be done by formula without having to sort the database.
 

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.
Re: Golf Handicps Values

I believe you are looking for this formula:
The MAXIFS function returns the maximum value among cells specified by a given set of conditions or criteria.
MAXIFS function
 
Last edited by a moderator:
Upvote 0
Re: Golf Handicps Values

something like this,


Excel 2013/2016
ABCDEF
1PlayerHandicapsFlightFlightHighest
2Player113DA30
3Player223CB27
4Player328AC23
5Player428AD14
6Player510EE11
7Player65E
8Player726B
9Player826B
10Player96E
11Player1013D
12Player1112D
13Player1229A
14Player1324B
15Player147E
16Player1514D
17Player1617C
18Player175E
19Player186E
20Player1927B
21Player2022C
22Player2111E
23Player2229A
24Player2315C
25Player2422C
26Player2529A
27Player2627B
28Player2723C
29Player2830A
30Player2913D
31Player3015C
Sheet3
Cell Formulas
RangeFormula
F2{=MAX(IF($C$2:$C$31=E2,$B$2:$B$31))}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0
Re: Golf Handicps Values

Thank you AlanY for providing values. Using your values the regular formula becomes:


=MAXIFS($B$2:$B$31, $C$2:$C$31, E2)


in cell F2. This is not an array formula, however, the function is only available in Excel 2016.
 
Upvote 0
Re: Golf Handicps Values

.. also for AlanY's layout (& Excel 2010 or later)

Excel Workbook
ABCDEF
1PlayerHandicapsFlightFlightHighest
2Player113DA30
3Player223CB27
4Player328AC23
5Player428AD14
6Player510EE11
7Player65E
8Player726B
9Player826B
10Player96E
11Player1013D
12Player1112D
13Player1229A
14Player1324B
15Player147E
16Player1514D
17Player1617C
18Player175E
19Player186E
20Player1927B
21Player2022C
22Player2111E
23Player2229A
24Player2315C
25Player2422C
26Player2529A
27Player2627B
28Player2723C
29Player2830A
30Player2913D
31Player3015C
Max Handicap
 
Upvote 0
Re: Golf Handicps Values

been informed by OP that he is using Excel 3.0.




.











.








just kidding
 
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,597
Members
449,038
Latest member
Arbind kumar

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