Is there any way to paste a table into a Userform? I found this post by @Dirk Horsten which captures the columns.
Private Sub TextBox1_Change()
Dim splitText
splitText = Split(Me.TextBox1.Value, vbTab)
If UBound(splitText) > LBound(splitText) Then
Me.TextBox1.Value = splitText(LBound(splitText))
Me.TextBox2.Value = splitText(LBound(splitText) + 1)
Me.TextBox3.Value = splitText(LBound(splitText) + 2)
Me.TextBox4.Value = splitText(LBound(splitText) + 3)
End If
End Sub
However, my table has more than one rows. Any ideas?
Cheers.