Skip to main content

In an Import Scenario is there a way to call a carriage return? We are importing notes from our old system and would like them to appear in Acumatica on separate lines in the same Notes dialog box. We have the notes concatenating into a single line separated by spaces by using the command in the screenshot below, but could we call a carriage return in between each note to put them on separate lines?

 

This could be done by appending a carriage return, ‘\r\n’, in between each of the notes instead of spaces.  You could continue with the addition of strings:

=oNotes1] + '\r\n' + nNotes2] + '\r\n' + nNotes3] + '\r\n' + nNotes4]

Or using the concat() function:
 

=Concat(oNotes1], '\r\n', rNotes2], '\r\n', rNotes3], '\r\n', rNotes4])

 


This could be done by appending a carriage return, ‘\r\n’, in between each of the notes instead of spaces.  You could continue with the addition of strings:

=oNotes1] + '\r\n' + nNotes2] + '\r\n' + nNotes3] + '\r\n' + nNotes4]

Or using the concat() function:
 

=Concat(oNotes1], '\r\n', rNotes2], '\r\n', rNotes3], '\r\n', rNotes4])

 

Works perfectly, thanks very much


Reply