DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Option Explicit
Sub MÜKERRER_OLANLARI_TEMİZLE()
Dim ALAN As Range, HÜCRE As Range
With Application
.ScreenUpdating = False
.Calculation = xlCalculationManual
.EnableEvents = False
End With
Set ALAN = Range("A1:U30")
For Each HÜCRE In ALAN
If HÜCRE.Value <> "" And WorksheetFunction.CountIf(ALAN, HÜCRE.Value) > 1 Then
HÜCRE.ClearContents
End If
Next
Set ALAN = Nothing
With Application
.EnableEvents = True
.Calculation = xlCalculationAutomatic
.ScreenUpdating = True
End With
MsgBox "İşleminiz tamamlanmıştır.", vbInformation
End Sub
Option Explicit
Sub MÜKERRER_OLANLARI_TEMİZLE()
Dim ALAN As Range, HÜCRE As Range
With Application
.ScreenUpdating = False
.Calculation = xlCalculationManual
.EnableEvents = False
End With
Set ALAN = Range("A1:U30")
For Each HÜCRE In ALAN
If HÜCRE.Value <> "" And WorksheetFunction.CountIf(ALAN, HÜCRE.Value) > 1 Then
HÜCRE.ClearContents
End If
Next
Set ALAN = Nothing
With Application
.EnableEvents = True
.Calculation = xlCalculationAutomatic
.ScreenUpdating = True
End With
MsgBox "İşleminiz tamamlanmıştır.", vbInformation
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
End Sub
HÜCRE.Interior.ColorIndex = 3