C# 3.0 分组后如何在rdlc中断开数据?

C# 3.0 分组后如何在rdlc中断开数据?,c#-3.0,C# 3.0,我在VS 2010中使用RDLC报告。在RDLC中按CustomerName对表进行分组后显示报告时,我得到的输出如下所述: 第1页 CustomerName Invoice InvoiceAmount Narmadha 6 250.00 61 550.00 62 1250.

我在VS 2010中使用RDLC报告。在RDLC中按CustomerName对表进行分组后显示报告时,我得到的输出如下所述:

第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
            CustomerName   Invoice  InvoiceAmount 

              Narmadha        6         250.00

                              61        550.00

                              62        1250.00

                              63        2500.00
第2页

           CustomerName   Invoice  InvoiceAmount

             Soorya           26        2150.00

                             163       500.00
最多N个记录

但我需要以下格式的输出:

第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
            CustomerName   Invoice  InvoiceAmount 

              Narmadha        6         250.00

                              61        550.00

                              62        1250.00

                              63        2500.00
--------------分页符--------------

最多N个记录

我想破坏分组数据,甚至我试图通过表达式Int((RowNumber(Nothing)-1)/4来破坏行。我得到了如上所述的输出。但我面临的问题是,如果假设‘soorya’只有三张发票,那么我得到的输出是

               CustomerName   Invoice  InvoiceAmount 

                  Narmadha        6         250.00

                                 61        550.00

                                 62        1250.00

                                 63        2500.00
--------------分页符--------------

--------------分页符--------------

最多N个记录

有人能帮我吗?

groupproperties

分页符 在每个实例之间的断页chceckbox上


@用户285008提高接受率。不需要在问题中介绍你自己,只需更新你的个人资料。避免大量使用椭圆。。。特别是在不需要时。:)你刚刚破坏了我的编辑,破坏了格式。
              CustomerName   Invoice  InvoiceAmount 

               ranjana         16        1250.00

                               21        560.00

                               26        2150.00

                               32        1500.00