DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Option Explicit
Private Sub CommandButton1_Click()
If IsNumeric(TextBox1) Then
With Sheets("Sheet1")
If .Range("A3").HasFormula Then
.Range("A3").Formula = .Range("A3").Formula & "+" & Replace(TextBox1, ",", ".")
End If
End With
Else
TextBox1 = ""
TextBox1.SetFocus
MsgBox "Lütfen sayısal değer giriniz!", vbCritical
End If
End Sub