views:

518

answers:

2

Crystal Reports in Visual Studio 2008 with C# Normally Data from single column comes like

Column1
val1
val2
val3
val4
val5
val6
val7
val8

BUT,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

A: 

right mouse button the Details section. select Section Expert..., in Common tabs, there's a Format with Multiple Columns

Michael Buen
Format with multiple Columns have been checked before... still the format which i shown above is not coming. can you have any other options?
Prasen Revankar
on width size input, did you make it smaller? and also make the printing directions: across then down
Michael Buen
Thanks Michael Buen!!! i got the solution. Thanks for sudden replies
Prasen Revankar
you're welcome, just thinking why i didn't get any upvote considering i also provided the complete answer(albeit the last step is in comment). anyway, you're welcome nonetheless ;)
Michael Buen
+1  A: 

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.

Barry
Thanks Barry it worked with splitting of details section.
Prasen Revankar