Private Sub TextBox1_Change()
If TextBox1 = Empty Then TextBox2 = Empty: TextBox3 = Empty
On Error Resume Next
YTL = Split(TextBox1, ",")
TextBox2 = YTL(0)
TextBox3 = "0," & YTL(1)
End Sub
Private Sub TextBox1_Change()
If TextBox1 = Empty Then TextBox2 = Empty: TextBox3 = Empty
On Error Resume Next
YTL = Split(TextBox1, ".")
TextBox2 = YTL(0)
TextBox3 = "0," & YTL(1)
End Sub