Tuesday, 12 December 2017

Add Sequence Number to records in SSRS report

While we create report using SSRS report for CRM it is good to should the  sequence number like 1,2,3 .... . you can use the below expression in your S.No column to show auto numbering

Expression:
=RunningValue(CountDistinct("YourTableName"),Count,"YourTableName")

1 comment: