DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_Change(ByVal Target As Range)
Application.ScreenUpdating = False
If Selection.Count = 1 Then
On Error Resume Next
If Target.HasFormula = True Then
adres = Replace(Target.FormulaLocal, "=", "")
If Range(adres).Count = 1 Then
If Range(adres).NoteText <> "" Then
Range(adres).Copy
Target.PasteSpecial Paste:=xlPasteComments
End If
End If
End If
End If
Application.ScreenUpdating = True
End Sub