Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need to pick the best five scores out of ten scores. I am doing this for a
golf league. After i find a way to do this i can set up the rest of the formula for the handicap. thanks in advance |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Does that mean that your highest value is a -value?
"john cornell" schreef in bericht ... I need to pick the best five scores out of ten scores. I am doing this for a golf league. After i find a way to do this i can set up the rest of the formula for the handicap. thanks in advance |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have golf scores that might range for one individual from 85 to 95 over a
period of ten plays. i need to have a way to pick the ten best scores. i hope that answers your question. "moon" wrote in message . .. Does that mean that your highest value is a -value? "john cornell" schreef in bericht ... I need to pick the best five scores out of ten scores. I am doing this for a golf league. After i find a way to do this i can set up the rest of the formula for the handicap. thanks in advance |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
here's a long formula i use to average the lowest 3 scores out of the last 5
rounds. maybe it will help. it's an array formula in row 9, in this case: =IF(ISBLANK(E9),"",AVERAGE(SMALL(IF(OFFSET(B9:T9,0 ,MATCH(1E+300,B9:T9)-5,1,5)=0,MAX(B9:T9),OFFSET(B9:T9,0,MATCH(1E+300,B9 :T9)-5,1,5)),{1,2,3}))) -- Gary "john cornell" wrote in message ... I need to pick the best five scores out of ten scores. I am doing this for a golf league. After i find a way to do this i can set up the rest of the formula for the handicap. thanks in advance |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
i wonder is there away to make it five out of 10 by changing the formula.
will try and let you know. "Gary Keramidas" <GKeramidasATmsn.com wrote in message ... here's a long formula i use to average the lowest 3 scores out of the last 5 rounds. maybe it will help. it's an array formula in row 9, in this case: =IF(ISBLANK(E9),"",AVERAGE(SMALL(IF(OFFSET(B9:T9,0 ,MATCH(1E+300,B9:T9)-5,1,5)=0,MAX(B9:T9),OFFSET(B9:T9,0,MATCH(1E+300,B9 :T9)-5,1,5)),{1,2,3}))) -- Gary "john cornell" wrote in message ... I need to pick the best five scores out of ten scores. I am doing this for a golf league. After i find a way to do this i can set up the rest of the formula for the handicap. thanks in advance |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Have you tried this site?
http://www.dailydoseofexcel.com/arch...golf-handicap/ "john cornell" wrote: i wonder is there away to make it five out of 10 by changing the formula. will try and let you know. "Gary Keramidas" <GKeramidasATmsn.com wrote in message ... here's a long formula i use to average the lowest 3 scores out of the last 5 rounds. maybe it will help. it's an array formula in row 9, in this case: =IF(ISBLANK(E9),"",AVERAGE(SMALL(IF(OFFSET(B9:T9,0 ,MATCH(1E+300,B9:T9)-5,1,5)=0,MAX(B9:T9),OFFSET(B9:T9,0,MATCH(1E+300,B9 :T9)-5,1,5)),{1,2,3}))) -- Gary "john cornell" wrote in message ... I need to pick the best five scores out of ten scores. I am doing this for a golf league. After i find a way to do this i can set up the rest of the formula for the handicap. thanks in advance |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
That is not really what i am looking for. I have 80 golfers and need to work
a handicap for all of them. I think the person was from Norway. Still hoping to find the right formula Last year some one sent a formula and i can't find it. "JLGWhiz" wrote in message ... Have you tried this site? http://www.dailydoseofexcel.com/arch...golf-handicap/ "john cornell" wrote: i wonder is there away to make it five out of 10 by changing the formula. will try and let you know. "Gary Keramidas" <GKeramidasATmsn.com wrote in message ... here's a long formula i use to average the lowest 3 scores out of the last 5 rounds. maybe it will help. it's an array formula in row 9, in this case: =IF(ISBLANK(E9),"",AVERAGE(SMALL(IF(OFFSET(B9:T9,0 ,MATCH(1E+300,B9:T9)-5,1,5)=0,MAX(B9:T9),OFFSET(B9:T9,0,MATCH(1E+300,B9 :T9)-5,1,5)),{1,2,3}))) -- Gary "john cornell" wrote in message ... I need to pick the best five scores out of ten scores. I am doing this for a golf league. After i find a way to do this i can set up the rest of the formula for the handicap. thanks in advance |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello:
I know nothing about golf handicaps but why don't you just use the small function? (assume the 10 scores in C12 to C21 The smallest: =SMALL(C12:C21,1) The 2nd smallest =SMALL(C12:C21,2) etc. the 5th smallest =SMALL(C12:C21,5) You can put these 5 formulas into five helper cells and then manipulate those to compute the handicap or you can do combined calculations. For example: To add the 5 smallest: =(SMALL(C12:C21,1)+SMALL(C12:C21,2)+SMALL(C12:C21, 3)+SMALL(C12:C21,4)+SMALL(C12:C21,5)) To average the 5 smallest: =AVERAGE(SMALL(C12:C21,1),SMALL(C12:C21,2),SMALL(C 12:C21,3),SMALL(C12:C21,4),SMALL(C12:C21,5)) To find the standard deviation of the 5 smallest: =STDEV(SMALL(C12:C21,1),SMALL(C12:C21,2),SMALL(C12 :C21,3),SMALL(C12:C21,4),SMALL(C12:C21,5)) To find the the largest of the 5 smallest: =MAX(SMALL(C12:C21,1),SMALL(C12:C21,2),SMALL(C12:C 21,3),SMALL(C12:C21,4),SMALL(C12:C21,5)) Can you make this idea work? Pieter Vandenberg john cornell wrote: : That is not really what i am looking for. I have 80 golfers and need to work : a handicap for all of them. : I think the person was from Norway. Still hoping to find the right formula : Last year some one sent a formula and i can't find it. : "JLGWhiz" wrote in message : ... : Have you tried this site? : http://www.dailydoseofexcel.com/arch...golf-handicap/ : : "john cornell" wrote: : : i wonder is there away to make it five out of 10 by changing the formula. : will try and let you know. : "Gary Keramidas" <GKeramidasATmsn.com wrote in message : ... : here's a long formula i use to average the lowest 3 scores out of the : last : 5 rounds. maybe it will help. it's an array formula in row 9, in this : case: : : =IF(ISBLANK(E9),"",AVERAGE(SMALL(IF(OFFSET(B9:T9,0 ,MATCH(1E+300,B9:T9)-5,1,5)=0,MAX(B9:T9),OFFSET(B9:T9,0,MATCH(1E+300,B9 :T9)-5,1,5)),{1,2,3}))) : : -- : : : Gary : : : "john cornell" wrote in message : ... : I need to pick the best five scores out of ten scores. I am doing this : for : a golf league. After i find a way to do this i can set up the rest of : the : formula for the handicap. : : thanks in advance : : : : : : |
#9
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
THANKS IT WORKS FINE!
"vandenberg p" wrote in message ... Hello: I know nothing about golf handicaps but why don't you just use the small function? (assume the 10 scores in C12 to C21 The smallest: =SMALL(C12:C21,1) The 2nd smallest =SMALL(C12:C21,2) etc. the 5th smallest =SMALL(C12:C21,5) You can put these 5 formulas into five helper cells and then manipulate those to compute the handicap or you can do combined calculations. For example: To add the 5 smallest: =(SMALL(C12:C21,1)+SMALL(C12:C21,2)+SMALL(C12:C21, 3)+SMALL(C12:C21,4)+SMALL(C12:C21,5)) To average the 5 smallest: =AVERAGE(SMALL(C12:C21,1),SMALL(C12:C21,2),SMALL(C 12:C21,3),SMALL(C12:C21,4),SMALL(C12:C21,5)) To find the standard deviation of the 5 smallest: =STDEV(SMALL(C12:C21,1),SMALL(C12:C21,2),SMALL(C12 :C21,3),SMALL(C12:C21,4),SMALL(C12:C21,5)) To find the the largest of the 5 smallest: =MAX(SMALL(C12:C21,1),SMALL(C12:C21,2),SMALL(C12:C 21,3),SMALL(C12:C21,4),SMALL(C12:C21,5)) Can you make this idea work? Pieter Vandenberg john cornell wrote: : That is not really what i am looking for. I have 80 golfers and need to work : a handicap for all of them. : I think the person was from Norway. Still hoping to find the right formula : Last year some one sent a formula and i can't find it. : "JLGWhiz" wrote in message : ... : Have you tried this site? : http://www.dailydoseofexcel.com/arch...golf-handicap/ : : "john cornell" wrote: : : i wonder is there away to make it five out of 10 by changing the formula. : will try and let you know. : "Gary Keramidas" <GKeramidasATmsn.com wrote in message : ... : here's a long formula i use to average the lowest 3 scores out of the : last : 5 rounds. maybe it will help. it's an array formula in row 9, in this : case: : : =IF(ISBLANK(E9),"",AVERAGE(SMALL(IF(OFFSET(B9:T9,0 ,MATCH(1E+300,B9:T9)-5,1,5)=0,MAX(B9:T9),OFFSET(B9:T9,0,MATCH(1E+300,B9 :T9)-5,1,5)),{1,2,3}))) : : -- : : : Gary : : : "john cornell" wrote in message : ... : I need to pick the best five scores out of ten scores. I am doing this : for : a golf league. After i find a way to do this i can set up the rest of : the : formula for the handicap. : : thanks in advance : : : : : : |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Picking a name from a list | Excel Discussion (Misc queries) | |||
Picking values out | Excel Worksheet Functions | |||
picking out certain values | Excel Worksheet Functions | |||
picking data | Excel Programming | |||
Picking Teams | Excel Programming |