Reputation: 11
i have create a report with serial number using rownumber(nothing) in rdcl report. since, i have used a group in the report, the serial number is continued with the previous group I get the report like
Group1 1 value
2 value
3 value
Group2 4 value
5 value
6 value
But i need it like
Group1 1 value
2 value
3 value
Group2 1 value
2 value
3 value
I even tried with RunningValue function. Is it possible the way i need it?
Upvotes: 1
Views: 11378
Reputation: 63
For creating serial number for each group in rdlc you can use following syntax
=RowNumber("table1_Group1") as expression in the text field
where table1_Group1 is group name .
Upvotes: 5