G
Guest
i'm adding to a rectangle a text from a range 1 by 1 character like this:
ActiveSheet.Shapes("Rectangle 3").Select
For i = 1 To Len(Range("J17"))
Selection.Characters.Text = Selection.Characters.Text +
Mid(Range("J17").Value, i, 1)
Next
It works, but when i arrives to 255 don't let me fill the rest of the
rectangle.
Anyone Help?
Thanks
ActiveSheet.Shapes("Rectangle 3").Select
For i = 1 To Len(Range("J17"))
Selection.Characters.Text = Selection.Characters.Text +
Mid(Range("J17").Value, i, 1)
Next
It works, but when i arrives to 255 don't let me fill the rest of the
rectangle.
Anyone Help?
Thanks