Hi, im trying to output a large string onto my report using crystal XI , each element in the strng is seperated by a comma :
i am outputting to various formats, pdf, excel, word etc
e.g string : this,is,a,long,string
i need to get it to output as :
+ this
+ is
+ a
+ long
+ string
however when it outputs the string, its displaying it as one big block of text.
is there a way to get it to output row by row as appose to one largeblock of text?
here is the formulae i use :
StringVar array Inputs;
NumberVar Counter;
StringVar Message := "<ul>";
Inputs := Split("this,is,a,large,string",");
For Counter := 1 to Count(Inputs) Step 1 Do
(
Message := Message & "<li> " + " + " + Inputs[Counter] + "</li>"
)
;
Message := Message & "</ul>";
i have set Text Interpretation to HTML text
any help would be greatly appreciated, thanks .
i am outputting to various formats, pdf, excel, word etc
e.g string : this,is,a,long,string
i need to get it to output as :
+ this
+ is
+ a
+ long
+ string
however when it outputs the string, its displaying it as one big block of text.
is there a way to get it to output row by row as appose to one largeblock of text?
here is the formulae i use :
StringVar array Inputs;
NumberVar Counter;
StringVar Message := "<ul>";
Inputs := Split("this,is,a,large,string",");
For Counter := 1 to Count(Inputs) Step 1 Do
(
Message := Message & "<li> " + " + " + Inputs[Counter] + "</li>"
)
;
Message := Message & "</ul>";
i have set Text Interpretation to HTML text
any help would be greatly appreciated, thanks .