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)
Dim Sd As Worksheet, c As Range
If Intersect(Target, [J:J]) Is Nothing Then Exit Sub
Set Sd = Sheets("data")
With Target
If .Count > 1 Then Exit Sub
If .Row < 4 Then Exit Sub
If .Value = "" Then Exit Sub
Set c = Sd.[A:A].Find(.Value, , xlValues, xlWhole)
If Not c Is Nothing Then
Application.EnableEvents = False
.Value = Sd.Cells(c.Row, "B")
Application.EnableEvents = True
Else
MsgBox "Tanımı Bulamadım"
End If
End With
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Sd As Worksheet, c As Range
If Intersect(Target, [B:R]) Is Nothing Then Exit Sub
Set Sd = Sheets("data")
With Target
If .Column = 8 And .Column = 9 Then Exit Sub
If .Count > 1 Then Exit Sub
If .Row < 4 Then Exit Sub
If .Value = "" Then Exit Sub
Set c = Sd.[A:A].Find(.Value, , xlValues, xlWhole)
If Not c Is Nothing Then
Application.EnableEvents = False
.Value = Sd.Cells(c.Row, "B")
Application.EnableEvents = True
Else
MsgBox "Tanımı Bulamadım"
End If
End With
End Sub