Hi,
Try this :
'-----------------------------------
Sub Test()
Dim T As String, S As Variant
'Adapte the name of your sheet
With Worksheets("Sheet1")
'Name of your Shape
T = .Shapes("toto").OLEFormat.Object.Text
End With
'Split() required excel 2000 or a more recent version of excel
S = Split(T, ",")
'Where your phrases will copied
With Worksheets("Sheet2")
.Range("A1").Resize(UBound(S) + 1) = Application.Transpose(S)
End With
End Sub
'-----------------------------------
"caveman.savant" <
[email protected]> a écrit dans le message de groupe de
discussion : (e-mail address removed)...
I have a Text box that will accept a series of comma separated phases.
By clicking a form button, I'd like to copy those phrases in rows and
a new sheet