Crystal Report: Showing Single Column Data into Rows of Multiple Columns
Crystal Reports in Visual Studio 2008 with C# Normally Data from single column com开发者_如何学运维es like
Column1
val1 val2 val3 val4 val5 val6 val7 val8BUT,I want to show data from my Single column in following format:
Column1
val1 val2 val3 val4 val5 val6 val7 val8 val9 val9 val10 val11 ..............
.......
Please help me out to get above output in Crystal Report
This can be done by splitting the details section in to columns.
- Right click the Details section in Design view and select Section Expert.
- Check the box
Format with Multiple Columns
An extra tab on the top right will appear called layout. - In the Layout tab set the Width to
4.5cm (for Portrait) and ensure that
Across then Down
is selected.
This will split the details in to columns of 4.5 cm wide.
Hope this helps.
right mouse button the Detail
s section. select Section Expert...
, in Common tabs, there's a Format with Multiple Columns
精彩评论