kyletreyfield
Technical User
I need to copy a string of text into Excel that may contain spaces and chr(10) so I want it all in one cell.
Here is the code I've tried to use
Pastes into Excel fine but not all in one cell. What am I doing wrong?
Here is the code I've tried to use
Code:
STORE filetostr("c:\path\filename.txt") TO _cliptext
oSheet1.Select
oX.SendKeys("F2")
oSheet1.Paste
oX.SendKeys("Enter")
_cliptext = ""
Pastes into Excel fine but not all in one cell. What am I doing wrong?