DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub Bul_Renklendir()
Dim ara As String, c As Range, Adr As String
ara = Application.InputBox("Aranan Değer", "Değer Renklendirme")
If ara = "" Then Exit Sub
Application.ScreenUpdating = False
Set c = Cells.Find(ara, , xlValues, xlWhole)
If Not c Is Nothing Then
Adr = c.Address
Do
c.Interior.ColorIndex = 6
Set c = Cells.FindNext(c)
Loop While Not c Is Nothing And c.Address <> Adr
End If
Application.ScreenUpdating = True
End Sub
Sub Bul_Renklendir()
Dim ara As String, c As Range, Adr As String
ara = Application.InputBox("Aranan Değer", "Değer Renklendirme")
If ara = "" Then Exit Sub
Application.ScreenUpdating = False
Set c = Cells.Find(ara)
If Not c Is Nothing Then
Adr = c.Address
Do
c.Interior.ColorIndex = 6
Set c = Cells.FindNext(c)
Loop While Not c Is Nothing And c.Address <> Adr
End If
c.Select
SendKeys "{F2}", True
SendKeys "%{ENTER}", True
SendKeys "{NUMLOCK}", True
Application.ScreenUpdating = True
End Sub
10:
, son satırına [End Sub üstüne] GoTo 10
yazıp deneyiniz.teşekkür ederim istediğim durum oldu tek sorun şuanda daha öncede bahsettiğim gibi ekranın yazdığım rakamın bulunduğu hücreye yönelmesini istiyorum bir bilginiz var mı sizin kodlarınız ekleyince o komutu kullanmadımMerhaba,
Makronun ilk satırına [Sub Bul_Renklendir() altına]10:
, son satırına [End Sub üstüne]GoTo 10
yazıp deneyiniz.
İyi çalışmalar.
Private Sub Worksheet_Change(ByVal Target As Range)
Call Bul_Renklendir
End Sub