SSRS table to have scrollbars down & not let the table grow

  • Good day, I need help.

    I would like have scrollbars downwards, i have a report table that grows longer than the page.

    I'm not going to print the report it's only for display purposes.

    I want the table to display 8 rows with scrollbar going down to x amount of rows.

    The table should not grow when more than 8 rows but add scrollbar going down.

    Please Assist, I will be out of office for a while - but thought of posting to start immediately when returning.

    Regards

  • I have question too, is there a way in SSRS 2005???

  • I don't know of anyway to add a scroll bar, and I can give you an idea to add a page break after N rows.

    You can create a group(you don't have to show the header or footer) with a new page at the end of the group and use an expression like this for the group:

    =IIF(RowNumber(Nothing) Mod 5 = 0, Floor(RowNumber(Nothing)/5) - 1, Floor(RowNumber(Nothing)/5))

    This code creates a new page after every 5 rows.

  • Hi,

    Apologies for the late reply as i only returned.

    Unfortunately not winning!

    Any ideas!

    Regards

Viewing 4 posts - 1 through 3 (of 3 total)

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