Adding Serial Number to SSRS Report via RowNumber() function
Add a new column as 'S.No.' in SSRS report. Open Expression window of the column and enter below text:
=RowNumber("<Datasetname>")
E.g., If my dataset name is "MyData"
then the command will be:
=RowNumber("MyData")
=RowNumber("<Datasetname>")
E.g., If my dataset name is "MyData"
then the command will be:
=RowNumber("MyData")
X++
ContingentBillTmp.SrNo += 1;
No comments:
Post a Comment