Group in reportviewer and numbering

1

I have two drawbacks.

The first one is like grouping some rows in my report.

This is the report design

And this is the result when I generate the report.

Here I need to make a way for the two rows that are repeated to group them.

And the other question would be, how to number the rows. I understand that for numbering I use the following expression

=RowNumber(Nothing) 

That would be for the first row, but I want that from then on to continue like this:

1.1
1.2
1.3
... 
    
asked by Norcarde 21.09.2016 в 00:14
source

1 answer

1

Here are two examples of how to group:

You have to make sure that you have to group within (inside) the group. To do the counting, you can use the following:

=CountRows("NombredelaColumna")

or

=CountRows("NombredelGrupoporcategoria"),

syntax:

CountRows(scope, recursive) ,

You can also try like this:

Count(Fields!AnyFieldNameInDataSet1.Value, "DataSet1")

Reference:

link

    
answered by 01.06.2017 в 06:28