Adjust Golf league Skins Conditional formatting

Gulfcourse

New Member
Joined
Nov 5, 2023
Messages
32
Office Version
  1. 365
Platform
  1. Windows
Hello,
I have a sheet, within a file, I'm using to find skins, the lowest individual score on each golf hole, if there is one.
I'm using conditional formatting and the formula:
=AND(C4=MINIFS(C$4:C$36,C$4:C$36,">0"),COUNTIFS(C$4:C$36,C4)=1,-C$1)
to highlight the cell if there is a skin on each hole throught for all 18 holes.

The person in ROW 17 has decided not to participate in the skins game.
I no longer wish to include his scores for skins but cannot simply cut the row since all the sheets list the golfers in alphabetical order, and I also use the sheet for points.
Another reason I don't want to cut the row, I need to keep it alphabetical.

This may happen for a few more people, perhaps row 24, so I may as well ask now how to do it since I've come up empty.

Is there a way to edit the formula to ignore certain rows?

Thank you
 

Attachments

  • Skin_Sheet.jpg
    Skin_Sheet.jpg
    219.2 KB · Views: 33

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Hi

Please add an index column (with 1s and 0s) towards the end
That would have 1 for the contestants who continue, and 0s for those who drop out

You could create one more sheet (Eg: named 'Dummy'), with values of that sheet being Skin Sheet x index column values

Thus, the Dummy sheet would have 0s for those who have dropped out

The same formulae/conditional formatting could be applied on the new sheet to get the desired results
 
Upvote 0
Hi

Please add an index column (with 1s and 0s) towards the end
That would have 1 for the contestants who continue, and 0s for those who drop out

You could create one more sheet (Eg: named 'Dummy'), with values of that sheet being Skin Sheet x index column values

Thus, the Dummy sheet would have 0s for those who have dropped out

The same formulae/conditional formatting could be applied on the new sheet to get the desired results
Hello, I really appreciate the reply and I know enough just to be dangerous!
I copied the sheet to a new workbook and created an Index in column Y with 1's and 0's.
As instructed, I copied that sheet to a new one called Dummy, but I'm the dummy that doesn't know how to add column Y, to look for only 1's, to the conditional formatting formula.

I got lost when you wrote "with values of that sheet being Skin Sheet x index column values"
this is the current formula:
=AND(C4=MINIFS(C$4:C$36,C$4:C$36,">0"),COUNTIFS(C$4:C$36,C4)=1,-C$1)
Where do I add if column Y = 1?
Thank you!
 
Upvote 0
Excel Formula:
=AND(C4=MINIFS(C$4:C$36,C$4:C$36,">0"),COUNTIFS(C$4:C$36,C4)=1,-C$1, $Y4=1)
 
Upvote 0
Solution
Conditional formating not working?
Lincoln in P15 and Zeman in P22 both had a 4 on Hole #11 but Lincoln is not in the game, 0 in AA15, but the 4 for Zeman is not being shaded?
This is the current formula
=AND(E4=MINIFS(E$4:E$28,E$4:E$28,">0"),COUNTIFS(E$4:E$28,E4)=1,-E$1, $AA4=1)
I can't figure it out, THANK YOU!

Cell Formulas
RangeFormula
E2:M2,O2:W2E2='18-hole scores'!D4
N2,X2N2=SUM('18-hole scores'!M4)
Y2Y2=SUM(N2+X2)
D4:D22D4=HANDICAP!D5
E4:Y4E4=('18-hole scores'!D6)
E5:Y5E5=('18-hole scores'!D8)
E6:Y6E6=('18-hole scores'!D10)
E7:Y7E7=('18-hole scores'!D12)
E8:Y8E8=('18-hole scores'!D14)
E9:N9,X9:Y9E9=('18-hole scores'!D16)
O9:W9O9=SUM('18-hole scores'!N16)
E10:Y10E10=('18-hole scores'!D18)
E11:Y11E11=('18-hole scores'!D20)
E12:Y12E12=('18-hole scores'!D22)
E13:Y13E13=('18-hole scores'!D24)
E14:Y14E14=('18-hole scores'!D26)
Z4Z4='18-hole scores'!AA7
Z5Z5='18-hole scores'!AA9
Z6Z6='18-hole scores'!AA11
Z7Z7='18-hole scores'!AA13
Z8Z8='18-hole scores'!AA15
Z9Z9='18-hole scores'!AA17
Z10Z10='18-hole scores'!AA19
Z11Z11='18-hole scores'!AA21
Z12Z12='18-hole scores'!AA23
Z13Z13='18-hole scores'!AA25
Z14Z14='18-hole scores'!AA27
Q15:Y15,E15:O15Q15=('18-hole scores'!P28)
Z15Z15='18-hole scores'!AA29
E16:Y16E16=('18-hole scores'!D30)
Z16Z16='18-hole scores'!AA31
E17:Y17E17=('18-hole scores'!D32)
Z17Z17='18-hole scores'!AA33
E18:Y18E18=('18-hole scores'!D34)
Z18Z18='18-hole scores'!AA35
E19:Y19E19=('18-hole scores'!D36)
Z19Z19='18-hole scores'!AA37
E20:Y20E20=('18-hole scores'!D38)
Z20Z20='18-hole scores'!AA39
E21:Y21E21=('18-hole scores'!D40)
Z21Z21='18-hole scores'!AA41
E22:N22,X22:Y22E22=('18-hole scores'!D42)
O22:W22O22=SUM('18-hole scores'!N42)
Z22Z22='18-hole scores'!AA43
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E4:W28Expression=AND(E4=MINIFS(E$4:E$28,E$4:E$28,">0"),COUNTIFS(E$4:E$28,E4)=1,-E$1, $AA4=1)textNO
 
Upvote 0
How about
Excel Formula:
=AND(E4=MINIFS(E$4:E$28,E$4:E$28,">0"),COUNTIFS(E$4:E$28,E4,$AA$4:$AA$28,1)=1,-E$1, $AA4=1)
 
Upvote 0
Excel Formula:
=LET(e, E$4:E$28, aa, $AA$4:$AA$28, eaa, e*aa, low, MIN(IF(eaa=0,99,e)), ct, ROWS(FILTER(eaa, eaa=low)),(E4=low)*(ct=1)*$AA4)
 
Upvote 0
Thank you I haven't had a chance to try either yet but will do it this evening!
 
Upvote 0

Forum statistics

Threads
1,223,705
Messages
6,173,989
Members
452,541
Latest member
haasro02

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