Hi, new here. I've had the best luck finding solutions on this site, but I can't seem to find one for this. Im' working a template and need to create a button that copies multiple text boxes from a user form into clipboard. I have an example here:

Sub CommandButton1_Click()

Dim MyData As New DataObject
MyData.SetText TextBox2.Text
MyData.PutInClipboard

End Sub

I know it's something easy I'm missing, can anyone help?!