- Katılım
- 27 Ekim 2017
- Mesajlar
- 97
- Excel Vers. ve Dili
- 2016 TÜRKÇE
- Altın Üyelik Bitiş Tarihi
- 06-01-2024
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [A1]) Is Nothing Then Exit Sub
Application.EnableEvents = False
Target = Split(Target, "-")(0)
Application.EnableEvents = True
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo 10
If Intersect(Target, Range("A1")) Is Nothing Then Exit Sub
Application.EnableEvents = False
If Target.Value <> "" Then
With CreateObject("VBscript.RegExp")
.Global = True
.Pattern = "[^0-9(-)]"
Target.Value = .Replace(Target.Value, "")
End With
End If
10 Application.EnableEvents = True
End Sub