DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Iki ayrı verinin birbirinin aynı olup olmadığını makroyla nasıl kontrol edebiliriz.yardımlarınız için şimdiden teşekkür ederim.
örnek dosya ektedir...
Private Sub Worksheet_Change(ByVal Target As Range)
sat = Target.Row
sut = Target.Column
If Cells(sat, "C") = "" And Cells(sat, "F") = "" Then
Cells(sat, "F").Interior.ColorIndex = xlNone 'dolgu yok
ElseIf Cells(sat, "C") = Cells(sat, "F") Then
Cells(sat, "F").Interior.ColorIndex = 43 'yeşil
Else
Cells(sat, "F").Interior.ColorIndex = 3 'kırmızı
End If
If Cells(5, sut) = "" And Cells(9, sut) = "" Then
Cells(9, sut).Interior.ColorIndex = xlNone 'dolgu yok
ElseIf Cells(5, sut) = Cells(9, sut) Then
Cells(9, sut).Interior.ColorIndex = 43 'yeşil
Else
Cells(9, sut).Interior.ColorIndex = 3 'kırmızı
End If
End Sub
Teşekkürler arkadaşlar....