I am using the following code to get info from a cell in my spreadsheet and add it to my userform textbox:

Private Sub CommandButton2_Click()
TextBox2.Text = Range("A12").Value
End
-Problem-
I need to have the information from cells 'A12 & E12' inserted in the textbox and then separated by a comma(,).

Can some one help me with the code for this.

Thank you for your support.