Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

breaking page with rdlc report

Status
Not open for further replies.

ahaboub

Technical User
Jul 31, 2009
41
0
0
LB
I am using the report rdlc with the reportviewer in VS 2010, i would like to break the page for my data by a specific column, i.e:
lets say i have 3 columns, ordered by column1, whenever i have a new value in column1, i would like to start on a new page, as below:

column1 column2 column3
--------- ---------- ---------
supplier1 5 2
supplier1 2 1
<break>
column1 column2 column3
--------- ---------- ---------
supplier2 1 3
< break>
column1 column2 column3
--------- ---------- ---------
supplier3 4 1
supplier3 2 1
< break>
etc,

any ideas or workarounds?

thank you
 
Hi,

You need to do this in the report definition, add a group for supplier, then in the group properties under the "Page Breaks" tick the option for "Between each instance of a group". This will page break for each supplier.

HTH

There are two ways to write error-free programs; only the third one works.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top