چطوري ميشه اعداد داخل يه تكست باكسو بصورت سه رقم سه رقم با يه , نشون داد؟
مثل سلول اكسل كه سه رقم جدا ميكنه
مثل سلول اكسل كه سه رقم جدا ميكنه
Private Sub CommandButton1_Click()
If vol.Text = "" Then
MsgBox ". مقادير قيمت را وارد کنيد"
Exit Sub
End If
Range("a1").Value = vol.Text & " تومان"
End
End Sub
If vol.Text <> "" And Not IsNumeric(vol.Text) Then
MsgBox "Not IsNumeric"
vol.Text = ""
ElseIf vol.Text <> "" And IsNumeric(vol.Text) Then
vol.Text = vol.Text & "تومان"
End If
If vol.Text <> "" And Not IsNumeric(vol.Text) Then
MsgBox "Not IsNumeric"
vol.Text = ""
ElseIf vol.Text <> "" And IsNumeric(vol.Text) Then
vol.Text = vol.Text & "تومان"
End If
کامنت