Majedur
Majedur

Reputation: 3242

Serial Number does not show by Grouping Row Number in RDLC Report

I am working with RDLC Report Builder 3.0. In my report page i have created two group and it's working fine. But I want to set serial number according to parent group.

I have written an expression though, but it's does not work:

=Runningvalue(Fields!VehicleId.Value,CountDistinct,"VehicleId")   

For this output: enter image description here

I need: enter image description here

Any help would be appreciated.

Upvotes: 2

Views: 2340

Answers (1)

Sabir Al Fateh
Sabir Al Fateh

Reputation: 1793

Assuming VehicleId isn't your dataset. So, You've to write your expression like :

=Runningvalue(Fields!VehicleId.Value,CountDistinct,"YourDataSetName")

Hopefully, this might solve your problem.

Upvotes: 3

Related Questions