I think you're already done with manual counting in a week 
but in the future (this isn't the fastest way probably) this can be helpful, but you have to sort the names A-Z and no blank cells in F column until the end:
Sub ImSoLazyAtCoOpWorking()
Dim LastRow As Range
Dim ClientName As String
Dim ActualClientCount As Integer
Dim BigShot As Integer
Set LastRw = Range("F:F").Find(What:="", LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False)
For i = 1 To LastRw.Row - 1
ClientName= Sheets("sheet4").Cells(i, 6).Value
ActualClientCount = Application.WorksheetFunction.CountIf(Range("F:F"), ClientName)
If ActualClientCount > 3 Then
BigShot = BigShot + 1
End If
i = i + ActualClientCount - 1
Next
Sheets("Sheet6").Range("A1") = BigShot
End Sub
Bookmarks