I want to paste a text into a cell. The text should always start 50 characters in to the cell, regardless of wich text that are written before.
How do I do that?
Printable View
I want to paste a text into a cell. The text should always start 50 characters in to the cell, regardless of wich text that are written before.
How do I do that?
Text1.SelStart = 50
Text1.SelLength = Len(Text1.Text) - 50
Then paste in Text1.SelText
Thanks!