Reputation: 37
I want to create a rdlc report that will look similar to this so I could print many records to save spaces and papers. Lets say. . if I have 120 rows in my table and i want to display it 3 columns so each columns will have 40 records each instead of displaying them all the way vertically.
Column Header | Column Header | Column Header
---------------------------------------------
value 1 value 7 value 13
value 2 value 8 ...
value 3 value 9 ...
value 4 value 10 ...
value 5 value 11 ...
value 6 value 12 ...
How can I do it? Thanks in advance!
Upvotes: 0
Views: 328
Reputation: 11115
You have to set Columns
and ColumnSpacing
properties of your report:
Property
windowReport
(grey area outside your
page)Columns
propertyUpvotes: 1