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 S1 As Worksheet: Set S1 = Sheets("KİTABIN ADI")
If Intersect(Target, [A2:A500]) Is Nothing Then Exit Sub
If WorksheetFunction.CountIf(S1.Range("A:A"), Target.Value) = 0 Then
Target.Offset(0, 0).Select
MsgBox "Listede Yok...", vbCritical
Exit Sub
End If
For i = 2 To S1.Cells(Rows.Count, "A").End(3).Row
If Target.Value = S1.Cells(i, "A") Then
Target.Offset(0, 1) = S1.Cells(i, "B")
Target.Offset(0, 2) = S1.Cells(i, "C")
Target.Offset(0, 3) = S1.Cells(i, "D")
Target.Offset(0, 4) = S1.Cells(i, "E")
Exit For
End If
Next i
End Sub