Total Row count in RDL

  • Hi All,

    I have a table named tbl which contains 250 rows

    I have a Varaible @CNT = SELECT count(*) from tbl

    Then i have a query as Select top 10 * from tbl

    Now i want to pass @CNT into second query.

    The output of Select top 10 * from tbl will be

    1 val1

    2 val2

    . .

    . .

    . .

    10 val 10

    But i want as

    1 val1 250

    2 val2 250

    . .

    . .

    . .

    10 val 10 250

    250 indicates the value of @CNT.

    Or is there any other way in which i can pass @CNT as a seperate field in SQL Server Reporitng Services RDL

    Thanks in advance

Viewing 0 posts

You must be logged in to reply to this topic. Login to reply