Rajesh
Rajesh

Reputation: 1620

How to design a Format with Multiple Column Report

I am designing a report With the Format With Multiple Columns option in the crystal report to display 10 records per column.But, my result set is Showing like,

     1.Row1
     2.Row2
     3.Row3
     4.Row4
     5.Row5
     6.Row6
     7.Row7
     8.Row8
     9.Row9
     10.Row10
     11.Row11
     12.Row12
     13.Row13
     14.Row14
     15.Row15
     16.Row16
     17.Row17
     18.Row18
     19.Row19
     20.Row20

instead of

     1.Row1   11.Row11
     2.Row2   12.Row12
     3.Row3   13.Row13
     4.Row4   14.Row14
     5.Row5   15.Row15
     6.Row6   16.Row16
     7.Row7   17.Row17
     8.Row8   18.Row18
     9.Row9   19.Row19
     10.Row10 20.Row20

what else I had to do to split the rows and display.

Note: I had already asked this kind of Question and got the answer to use Format With Multiple Column in this Link.

Upvotes: 0

Views: 3224

Answers (1)

Raphael
Raphael

Reputation: 1687

to set multiple columns you have first to do to Report -> Section Expert

Then in the details section you have to check Format with multiple columns

enter image description here

After that you should select the layout tab and set width of your column and the gab between them.

enter image description here

Upvotes: 2

Related Questions