Sounds like a missing escape in the Export to CSV functionality. I suggest filing a bug report.
As temporary workaround you could add an attribute which is set on commit, and stores the same value as your payment attribute, but without "\n" (you can use replaceall for that). Than use that attribute in the export.
Thank you for your reply
|
|
V
I tried to do below
Old :
PaymentTerm = Payment1 +'\n'+Payment2
New :
PaymentTerm =
Payment1 +
'
'+Payment2
They didn't work