DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_BeforeRightClick(ByVal Target As Range, Cancel As Boolean)
Cancel = True
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If WorksheetFunction.IsText([a1]) Then
MsgBox "Sayı Giriniz"
[a1] = vbNullString: [a1].Select
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [A1:AP36]) Is Nothing Then Exit Sub
If WorksheetFunction.IsText(Target.Value) Then
MsgBox "Sayı Giriniz"
Target.Value = vbNullString: Target.Select
End If
End Sub