Display Format

Which command can I add to tell an implode command to disply a given field in the same format the field was entered. I am displaying a description field in a web form using @implode command but its wrapping up the text and loosing all the paragraphs in the field and wrapping them all up as one long paragraph.

Heres my computed value

@Implode(desc)

Subject: RE: Display Format

You can try @Implode(desc; @NewLine) or @Implode(desc; “
”)…

This is assuming that your problem is not line breaking.

Subject: RE: Display Format

Thanks Chuck, Using @Implode(desc; @NewLine) resolved my problem.

Subject: @implode(desc,@newline)

Subject: RE: @implode(desc,@newline)

Alan I tried your formula @implode(desc,@newline) but got a script error and I was not able to save the code. Was there something else I should have added to complete the command?