Skip to main content

I want to add line break (char(10), and char(13)) to the end of text using padright function.


How to do that?


padding 0xd,0xa does not work.


 


Thanks,


David

Try adding this in the padright function. Use the Inline Text function URL Decode as below:


URL Decode(%0A)  = LineFeed


URL Decode(%0d)  = Carriage Return


This seems to work when writing content to a text file or word document.


David


 


 


 


Try doing the following:


Insert an inline Text function URL Decode using either a :


%0a = LineFeed


%0d = Carriage Return


So it would look like this URL Decode(%0a)


This has worked for me when adding text to a document.


David


 


 


Reply