DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub RENKLE()
Dim SUT As Byte
For SUT = 3 To 11
Cells(52, SUT).Interior.ColorIndex = xlNone
If WorksheetFunction.CountIf(Range("C52:L" & SUT), Cells(52, SUT)) > 1 Then
Cells(52, SUT).Interior.ColorIndex = 6
End If
Next
End Sub
Sub RENKLE()
[C3:L52].Font.ColorIndex = 0
For SUT = 3 To 11
For SAT = 3 To 52
If WorksheetFunction.CountIf(Range("C3:L" & SAT), Cells(SAT, SUT)) > 1 Then
Cells(SAT, SUT).Font.ColorIndex = 3
End If
Next
Next
End Sub