Support for line break character (/n)
Right now we can add line breaks through Concatenation, but there isnt a simple way to force a line break in some more complex situations.
We use this particularly for notepad text, where we want to summarise a few cells of data into a single notepad, e.g.
'Signed up for Email Newsletter on the website. /n
First Name Provided: Alex /n
Surname Provided: Bishop-Thorpe /n
Email address provided: alex.bishop-thorpe@'
Importimatic supported '/n' as a line break character, but this isnt supported by Omatic Cloud. Instead it just renders the text '/n'. If we use the line break as the separator for the concatenation, we get this:
'Signed up for Email Newsletter on the website.
First Name Provided:
Alex
Surname Provided:
Bishop-Thorpe
Email address provided:
alex.bishop-thorpe@'
Which is acceptable, but not super readable.
It does appear that if we import an excel document with like breaks in the cells (e.g. excel formula =CHAR(10)) it will honour these line breaks in the import. However, if we try to copy-paste this ASCII character in as a field when we concatenate, it gets filtered out.
Can we have a way of forcing a line break in notepad text, like in Importomatic?