Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How do put a linefeed when exporting to a file?

i am using actions on a button to export a table and other input values to a web page. However I want to put some linefeeds in between the objects I'm appending to the file. Any ideas?

thanks!

Leslie

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hi,

I usually use

Text & chr(13) & chr(10)


to get the CR LF characters (new line, like \n in linux or perl) and depending on the computer, sometimes twice (CR LF CR LF)

Hope that helps.

View solution in original post

3 Replies
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

can you concatenate a CHR(10) in the exported string?

Miguel_Angel_Baeyens

Hi,

I usually use

Text & chr(13) & chr(10)


to get the CR LF characters (new line, like \n in linux or perl) and depending on the computer, sometimes twice (CR LF CR LF)

Hope that helps.

Not applicable
Author

I'm using actions on a button to export. I can only export fields. How do I add the chr(13) to a field?

Thanks!