If you want to include any combination of holes, then try using Marlett check boxes
Modified code below and now includes additional code to use Marlett check boxes in the worksheet selection change event.
Worksheet code:
Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("D3:U3")) Is Nothing Then
Target.Font.Name = "Marlett"
If Target = vbNullString Then
Target = "a"
Else
Target = vbNullString
End If
End If
End Sub
Code modified to use the selections for multiple holes:
Option Explicit
Option Base 1
Sub Get_Scores()
Dim lastrow As Long, lngCol As Long, chkSum As Long, i As Long
Dim sName As String, sCourse As String
Application.ScreenUpdating = False
With Sheet2
'// set the filter criteria to string variables based on drop down selections
sName = .Range("B1").Value
sCourse = Range("B2").Value
chkSum = WorksheetFunction.CountA(.Range("D3:U3"))
'// clear the output cells to receive new data - -- adjust range if required
.Range("C6:U500").ClearContents
End With
'// confirm none of the selections are blank before applying filter and that at least one hole is picked
Select Case True
Case sName = "": MsgBox "Player not selected", vbExclamation: Exit Sub
Case sCourse = "": MsgBox "Course not selected", vbExclamation: Exit Sub
Case chkSum < 1: MsgBox "At least one hole must be selected", vbExclamation: Exit Sub
End Select
'// find last data row and column matching the hole selection then apply filter and copy results to sheet2
With Sheet1
lastrow = .Cells(Rows.Count, "A").End(xlUp).Row
.AutoFilterMode = False
.Range("A1:W" & lastrow).AutoFilter Field:=1, Criteria1:=sName
.Range("A1:W" & lastrow).AutoFilter Field:=3, Criteria1:=sCourse
.Range("B1:B" & lastrow - 1).Offset(1, 0).SpecialCells(12).Copy Sheet2.Range("C6")
On Error Resume Next
For i = 4 To 21
If Sheet2.Cells(3, i) = "a" Then
lngCol = Sheet2.Cells(2, i).Value + 4
End If
.Range(.Cells(1, lngCol), .Cells(lastrow - 1, lngCol)).Offset(1, 0).SpecialCells(12).Copy Sheet2.Cells(6, lngCol - 1)
Next i
End With
Application.CutCopyMode = False
Application.ScreenUpdating = True
End Sub
Also, you may want to clear the selection in one go to start fresh.
Sub reset()
With Sheet2
.Range("B1:B2").ClearContents
.Range("D3:U3").ClearContents
.Range("C6:U500").ClearContents
End With
End Sub
Excel Help _807056.xlsm
Bookmarks