Hi,
I would like to print multiple parameters in my report, each parameter separated with a CRLF. I have the following code in a formula field but does not seem to work as it only prints True on the report. Any help would be appreciated.
WhilePrintingRecords;
Local NumberVar i;
Local StringVar str := "";
For i := 1 to UBound({?Paragraph 1}) -1
Do (str := str + {?Paragraph 1});