Private Sub CommandButton1_Click()
'Sum values
'Modified 1/12/2019 12:51:21 AM EST
TextBox4.Text = Val(TextBox1.Text) + Val(TextBox2.Text) + Val(TextBox3.Text)
End Sub
Private Sub CommandButton2_Click()
'Combine Values
'Modified 1/12/2019 12:51:21 AM EST
TextBox4.Value = TextBox1.Value + TextBox2.Value + TextBox3.Value
End Sub
Are you wanting to add up all the values Like Result = 245
Or combine the Text Like JaneBobCharlie
How aboutChange the comma space at the end to what ever you want as the delimiter.Code:Me.TextBox4.Value = join(Array(Me.TextBox1, Me.TextBox22, Me.TextBox3), ", ")