Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
in my rdlc Replot I have two column "Student Name" and "RESULT",
so when there are about 50 students,
it takes 3page reports, i mean 20 students record showing in one page,

I just want to reduce number of pages.

So is there any function in rdlc so, i can show 40 students side by side, means
use both column two times per page,
ex::

HTML
page 1:
StudentName     Result   StudentName     Result  
1                 A          4            c

2                 A          5            c-

3                 B+          6            c+

page 2:
StudentName     Result   StudentName     Result  
7                A          9             A

8                B          10             A++



currently its showing like this :

HTML
page1:
Student Name        Result
1                   A
2                   B
3                   A+
page2:
Student Name        Result
4                   A
5                   B
6                   C+



Note: I m doing this in c#.net
Posted

1 solution

Hi I think its not possible with rdlc (up to my knowledge). Alternatively you can add two more columns in your data table and add the data by looping through. then bind it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900