What do I have to embed in my data to get a report cell to line break
If I have:
ABC XYZ
what do I have to store in the position to get it to look like:
ABC
XYZ
in my report
What do I have to embed in my data to get a report cell to line break
If I have:
ABC XYZ
what do I have to store in the position to get it to look like:
ABC
XYZ
in my report
Report equivalent of a <BR> or a vbCrLf
cpvgd
But I don't understand how you convert to this characters. Are you evaluating an expression or this is data from a dataset
If you are evaluating an expression put "first string"+CHAR(13)+"last string"
Can you be more specific
chowdharyrohit
Karl Costenbader
The data is from a Dataset. What I'm trying to figure out is what can I put in the data to make a Report perform a line break Whatever I put in there is just take as part of the data. I've tried putting:ABC\n\rXYZ and that's exactly what shows up in the cell on the report.
Bigs
But it's valid too and it's good to know as many ways to solve problem as you can.
Frederik Carlier
SELECT field1+CHAR(13)+field2
or
SELECT field1+CHAR(10)+CHAR(13)+field2
tell me if it works!!!
slimjen1
Thanks
Steve