DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Selection.Count > 1 Then Exit Sub
a = Target.Row
b = Target.Column
If Cells(5, b) = "DR" Then
If Sheets("Sayfa2").Cells(a, b) <> "" Then
MsgBox Sheets("Sayfa2").Cells(a, b).Value
End If
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Selection.Count > 1 Then Exit Sub
a = Target.Row
b = Target.Column
If Cells(5, b) = "DR" Then
If Target <> "ÇALIŞIR" Then
Sheets("Sayfa2").Activate
Sheets("Sayfa2").Cells(a, b).Select
Sheets("Sayfa2").Cells(a, b) = "Lütfen sebebini giriniz"
End If
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Selection.Count > 1 Then Exit Sub
a = Target.Row
b = Target.Column
If Cells(5, b) = "DR" Then
If Sheets("Sayfa2").Cells(a, b) <> "" Then
MsgBox Sheets("Sayfa2").Cells(a, b).Value
End If
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Selection.Count > 1 Then Exit Sub
a = Target.Row
b = Target.Column
If Cells(5, b) = "DR" Then
If Target <> "ÇALIŞIR" Then
If Target = "" Then
Sheets("Sayfa2").Cells(a, b) = ""
Else
Sheets("Sayfa2").Activate
Sheets("Sayfa2").Cells(a, b).Select
MsgBox "Lütfen sebebini giriniz"
End If
End If
End If
End Sub