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)
On Error Resume Next
If Intersect(Target, [c3:c15]) Is Nothing Or Target = "" Then Exit Sub
Set s = Sheets("ürün fiyatları")
Set Bul = s.Range("a2:a" & [a65536].End(3).Row).Find(Target, LookIn:=xlValues, LookAt:=xlWhole)
If Not Bul Is Nothing Then
Target.Offset(0, 3) = s.Cells(Bul.Row, "b")
End If
End Sub
Rica ederim. İyi çalışmalar.:hey:Leumruk bey siz bir harikasınız ilginiz için çok teşekkür ederim![]()
If Intersect(Target, [c3:c15]) Is Nothing Or Target = "" Then Exit Sub
If Intersect(Target, Range("c3:c"&[c65536].End(3).Row)) Is Nothing Or Target = "" Then Exit Sub
Kodu şununla değiştirin, kırmızı kısım yeni eklendi.sanırım daha önceki yolladığınız dosyayı kontrol ettiniz son yolladığınız dosyada farklı komutlar var. kontrol edebilirmisiniz rica etsem. teşekkürler.
Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
If Intersect(Target, [b4]) Is Nothing Or Target = "" Then Exit Sub
Set s = Sheets("ürün fiyatları")
Set Bul = s.Range("a2:a" & [COLOR="Red"]s[/COLOR].[a65536].End(3).Row).Find(Target, LookIn:=xlValues, LookAt:=xlWhole)
If Not Bul Is Nothing Then
Target.Offset(3, 0) = s.Cells(Bul.Row, "b")
End If
End Sub