Reputation: 3052
I created a report using Crystal Reports 11 and trying to display it in my ASP.NET application using CrystalReportViewer. My report is just a table with several columns and header row. The problem is that when text exceeds cell's width, it overlaps the next cell. What I'm trying to achieve is that column width is automatically adjusted to accommodate the longest text in the column (just like normal HTML tables do). Please help me, I can't believe this common thing is so hard to do. Thanks!
Upvotes: 2
Views: 13560
Reputation: 565
You can automatically increase the size of the field vertically. Then the data will display in several rows if the field length is not enough.
Hope this will help for you.
Upvotes: 1
Reputation: 44042
As far as I know Crystal only allows you automatically expand a field vertically not horizontally.
To automatically increase the size of a field vertically you need to:
Upvotes: 5