Hi All!
I have a formula field named remarks in my report in which i Check several if conditions .
I set the remarks to some text each time a condition is found true.
For eg)
WHilePrintingRecords;
Global Stringvar remarks;
remarks:="";
if cond1 is true then
( ..........
........
remarks:="Line no" & " First Line";
);
if cond2 is true then
(
.........
........
remarks:=remarks & "Line no" & "Second line";
)
I have to print them in separate lines.
For eg) 1. Cost is 0
2. Cost is null
3. Start Date is empty
The problem is all lines are getting printed continuously.
What is the substitue for "\n" in crystal Reports?
Thanks in advance!
Edited by dhakshu - 20 Mar 2007 at 8:44pm