M
Michelle
I am splitting text into chunks separated by full-stops, then transposing
the array into a range
my code looks something like this:
vArr = Split(BigString, ".")
If IsArray(vArr) Then
Set tRange = Sheets("Monologue").Cells(2, 2).Resize(UBound(vArr) -
LBound(vArr) + 1, 1)
tRange.Value = Application.Transpose(vArr) '*** this is the line
with the problem!
Else
Sheets("Monologue").Cells(2, 2).Value = vArr
End If
I am fiddling with code kindly provided by JE McGimpsey - Thanks JE - his
worked fine but I am now getting this error
Run-Time error '-2147417848(80010108)':
Automation error
The object invoked has disconnected from its clients.
Anyone know what might be going on?
Thanks
M
the array into a range
my code looks something like this:
vArr = Split(BigString, ".")
If IsArray(vArr) Then
Set tRange = Sheets("Monologue").Cells(2, 2).Resize(UBound(vArr) -
LBound(vArr) + 1, 1)
tRange.Value = Application.Transpose(vArr) '*** this is the line
with the problem!
Else
Sheets("Monologue").Cells(2, 2).Value = vArr
End If
I am fiddling with code kindly provided by JE McGimpsey - Thanks JE - his
worked fine but I am now getting this error
Run-Time error '-2147417848(80010108)':
Automation error
The object invoked has disconnected from its clients.
Anyone know what might be going on?
Thanks
M