1

I have a table in SSRS report. And I need to display only the last row of the table. ie, Please refer the Image below

How can I do this?

Ashkan S
  • 10,464
  • 6
  • 51
  • 80

2 Answers2

0

How do I select last 5 rows in a table without sorting? see this post, and change to "-1"

Schmocken
  • 603
  • 8
  • 15
0

We can select the last row of the table by using Last() method. For eg. if we have a table called Test then,

Last(Fields!Test.value);