c# 3.0 - How to break the data in rdlc after grouping? -


i working rdlc report in vs 2010.while displaying report after grouping table customername in rdlc ,i getting output mentioned below:

page 1

           customername   invoice  invoiceamount                 narmadha     6         250.00                             61        550.00                             62        1250.00                             63        2500.00              customername   invoice  invoiceamount                  soorya          16        1250.00                                 21        560.00 

page 2

           customername   invoice  invoiceamount               soorya           26        2150.00                               163       500.00 

upto n records

but need output in following format:

page 1

            customername   invoice  invoiceamount                 narmadha        6         250.00                                61        550.00                                62        1250.00                                63        2500.00 

--------------page break--------------

            customername   invoice  invoiceamount                 soorya          16        1250.00                                21        560.00                                26        2150.00                               163       500.00 

upto n records

i want break grouping data , tried break rows expression,int((rownumber(nothing)-1)/4).i got output mentioned above.but problem faced that,if suppose 'soorya' has 3 invoices means,i getting output

               customername   invoice  invoiceamount                     narmadha        6         250.00                                   61        550.00                                   62        1250.00                                   63        2500.00 

--------------page break--------------

                customername   invoice  invoiceamount                    soorya          16        1250.00                                   21        560.00                                   26        2150.00                   ranjana         163       500.00 

--------------page break--------------

              customername   invoice  invoiceamount                  ranjana         16        1250.00                                 21        560.00                                 26        2150.00                                 32        1500.00 

upto n records

can 1 me?

groupproperties

pagebreaks on chceckbox of break page between each instance


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -