word vba sum text box values on user form - Microsoft Community
You need to change the textbox values from text to numbers i.e. Option Explicit Private Sub TextBox1_Change() With Me .TextBox4.Value = Format(Val(.TextBox1.Value) + Val(.TextBox2.Value) + Val(.TextBox3.Value), "#,##0.00") End With End Sub...