DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
herhangi bir hücreyi seçtiğimde benzer içerikteki hücreler diğer hücrelere göre daha belirgin duruma gelebilirmi
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Target, [T:T]) Is Nothing Then Exit Sub
If Target.Value = "" Then Exit Sub
Application.ScreenUpdating = False
Dim c As Range
Dim Adr As String
With Range("A:R")
Set c = .Find(Target.Value, LookIn:=xlValues, LookAt:=xlWhole)
If Not c Is Nothing Then
Adr = c.Address
Do
With c
.Font.Bold = Target.Font.Bold
.Font.Italic = Target.Font.Italic
.Font.Underline = Target.Font.Underline
.Font.ColorIndex = Target.Font.ColorIndex
.Interior.ColorIndex = Target.Interior.ColorIndex
End With
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> Adr
End If
End With
Application.ScreenUpdating = True
End Sub