Reputation: 3242
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")
Any help would be appreciated.
Upvotes: 2
Views: 2340
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