Help With formula

VinceF

Board Regular
Joined
Sep 22, 2007
Messages
172
Office Version
  1. 2016
Platform
  1. Windows
Your help is needed again and as always very much appreciated.

Golf game: either Two+ or Two++ Object with both games is to get as much under par as possible.
Two+ is with 3 players on a team and it must use the 2 lowest scores on the hole but if the third players score will help the team it uses all 3 scores.
Two++ is with 4 players on the team and it must use the low 2 scores on the hole but if the 3rd players score helps the team it will use it and same with the 4th players score.

In the example, the hole is a par 5 and 3 of the 4 players birdied the hole, the 4th players score doesn't help the team to get further under par therefore his score wouldn't count, the result should read -3


=IF(Main!$D$4="TWO+",IF(SMALL(K7:K10,3)>=K6,SMALL(K7:K10,1)+SMALL(K7:K10,2)-K6*2),
IF(Main!$D$4="TWO+",IF(SMALL(K7:K10,3)<K6,SMALL(K7:K10,1)+SMALL(K7:K10,2)+SMALL(K7:K10,3)-K6*3),
IF(Main!$D$4="TWO++",IF(SMALL(K7:K10,4)>=K6,SMALL(K7:K10,1)+SMALL(K7:K10,2)+SMALL(K7:K10,3)-K6*3),
IF(Main!$D$4="TWO++",IF(SMALL(K7:K10,4)<K6,SMALL(K7:K10,1)+SMALL(K7:K10,2)+SMALL(K7:K10,3)+SMALL(K7:K10,4)-K6*4)))))

Thanks in advance,
VinceF
Excel 2016
Win10



Master Skins-Stableford Templet FINAL 3-29-22.xlsm
JK
5HOLE1
6PAR5
7Kelly4
8Woody4
9Ty4
10Sid5
11###
Two Plus
Cells with Conditional Formatting
CellConditionCell FormatStop If True
J11Cell Value<0textNO
K11Cell Value<0textNO
D7:D46,J12:K12,J19:K19,J47:K47,J54:K54,J61:K61,J26:K26,J33:K33,J68:K68,J7:J11Cell ValueduplicatestextNO
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
@VinceF Is it reasonable to suggest that Main D4 will only ever contain either "Two+" or " Two++"
 
Upvote 0
Does this help?

Note that I have hard scores entered, not the formulas that you will have.

Book1
IJKL
4
5HOLE1
6PAR5
7Kelly4
8Woody4
9Ty4
10Sid5
11-3
12
Sheet2
Cell Formulas
RangeFormula
K11K11=IFERROR((-2*K6)+(SMALL(Sheet2!K7:K10,1)+SMALL(Sheet2!K7:K10,2))-IFERROR(IF(SMALL(K7:K10,3)<K6,K6-SMALL(K7:K10,3),0),0)-IFERROR(IF(AND(Main!$D$4="Two++",SMALL(K7:K10,4)<K6),K6-SMALL(K7:K10,4),0),0),"")
 
Upvote 0
@VinceF Is it reasonable to suggest that Main D4 will only ever contain either "Two+" or " Two++"
Thank you for your reply and Yes that is correct, it would only be one or the other in Main!D4.
However, I believe that I got it working with this modification...specifically the last line of the formula.
If you know of a cleaner or easier one it'd be appreciated.



=IF(AND(Main!$D$4="TWO+",SMALL(K$7:K$10,3)<K$6),SMALL(K$7:K$10,1)+SMALL(K$7:K$10,2)+SMALL(K$7:K$10,3)-K$6*3,
IF(AND(Main!$D$4="TWO+",SMALL(K$7:K$10,3)>=K$6),SMALL(K$7:K$10,1)+SMALL(K$7:K$10,2)-K$6*2,
IF(AND(Main!$D$4="Two++",SMALL(K$7:K$10,4)<K$6),SMALL(K$7:K$10,1)+SMALL(K$7:K$10,2)+SMALL(K$7:K$10,3)+SMALL(K$7:K$10,4)-K$6*4,
IF(AND(Main!$D$4="two++",SMALL(K$7:K$10,3)<K$6),SMALL(K$7:K$10,1)+SMALL(K$7:K$10,2)+SMALL(K$7:K$10,3)-K$6*3,
IF(Main!$D$4="two++",IF(SMALL(K$7:K$10,3)>=K$6,SMALL(K$7:K$10,1)+SMALL(K$7:K$10,2)-K$6*2))))))
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,545
Members
449,089
Latest member
davidcom

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