Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SubReport not using full page width CR9

Status
Not open for further replies.

cjinok

Technical User
Jul 9, 2003
4
US
The subreport is a description field. Both the main rpt field and the subrpt field are full width of the page, but when report pulls information it only uses 1/3 of the width to populate the results. It wraps the verbiage and gives complete results, but does not use the total width of the field.
 
Is it possible that returns have been built into the description field? You might try:

replace({table.desc}, chr(13)," ")

In case their is also a line feed code, you could also try:

replace(replace({table.desc}, chr(13)," "),chr(10)," ")

-LB
 
I appreciate the suggestion, but unfortunately it did not solve the problem.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top