DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If ActiveCell.Address(0, 0) = "Q2" Then Exit Sub
If Range("Q2") = "" And ActiveCell.Address(0, 0) <> "Q2" Then
MsgBox "Q2 hücresini boş geçemezsiniz !", vbCritical
Range("Q2").Select
Exit Sub
End If
If ActiveCell.Address(0, 0) = "R2" Then Exit Sub
If Range("R2") = "" And ActiveCell.Address(0, 0) <> "R2" Then
MsgBox "R2 hücresini boş geçemezsiniz !", vbCritical
Range("R2").Select
Exit Sub
End If
End Sub