- Katılım
- 16 Mayıs 2008
- Mesajlar
- 561
- Excel Vers. ve Dili
-
Ev : Office Excel 2003
İş : Office Excel 2003
Merhaba;
Ozaman aşağıdaki kodu bu şekilde değiştiriniz.
Ozaman aşağıdaki kodu bu şekilde değiştiriniz.
Kod:
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Bul As Range, Hücre As Range, U As Long
If Intersect(Target, Range("E1")) Is Nothing Then Exit Sub
Range("E10") = ""
[COLOR=red]Set Bul = Rows("23:23").Find(What:=Target, LookAt:=xlWhole)
[/COLOR] If Not Bul Is Nothing Then
For U = 2 To Bul.Row
If Cells(U, Bul.Column).Interior.ColorIndex = 6 Then
[COLOR=red] Range("E10") = Cells(U, "AC")
[/COLOR] End If
Next
If Range("E10") = "" Then MsgBox "Bu değer de kriter yok !", vbCritical, "Sn : " & Application.UserName
End If
End Sub