Search code examples
ssrs-2012ssrs-tablix

How to visible only the last row of a row group of a table in ssrs report


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?


Solution

  • 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);