I have a skuid page with a table based on my Accounts that I would like to export to csv.
In my Account object I have a textfield PersonOtherStreet, which can contain multiple lines.
In my table I have a template field called address that puts together several fields of my Account object including PersonOtherStreet to format the adress according to different rules. For testing purposes I also put the PersonOtherStreet field separately in the table.
When I export my table to csv, all newline characters inside my template field are removed to one line, which completely destroys the formatting purpose of the template. Contrary, the newline characters are preserved when I just export the PersonOtherStreet field separately.
I could manage to manually set the newline characters by manually putting a placeholder string for each newline “/br”. See my template code:
{{#PersonOtherStreet}}
{{#PersonTitle}}{{PersonTitle}} {{/PersonTitle}}{{^PersonTitle}}{{Salutation}} {{/PersonTitle}}{{Name}}/br
{{PersonOtherStreet}}/br
{{PersonOtherPostalCode}} {{PersonOtherCity}}/br
{{PersonOtherCountry}}
{{/PersonOtherStreet}}
{{^PersonOtherStreet}}
{{Company__c}}/br
Attn: {{#PersonTitle}}{{PersonTitle}}{{/PersonTitle}}{{^PersonTitle}}{{Salutation}}{{/PersonTitle}} {{Name}}/br
PERSONAL/br
{{BillingStreet}}/br
{{BillingPostalCode}} {{BillingCity}}/br
{{BillingCountry}}
{{/PersonOtherStreet}}
After exporting this to csv I replace each ‘/br’ with a newline character. This works fine, but not for any newlines inside the fields (e.g. inside the PersonOtherStreet field).
Is there a way to turn on to export newline characters in template fields? Do you have another idea for a workaround?
Question
newline character omitted in csv export

Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.