I am trying to figure out how to display newly entered text from one userform text box to another userform text box in a new line below. Pretty much I want it to a multiline input. Here is the code I am using so far:
Private Sub CommandButton1_Click()
UserForm1.TextBox1.Value = TextBox1.Value & vbNewLine
End Sub
