To implement paging for reports in report designer

  • Hi all,

    Is there any option to add paging in reports built using report designer? I would like to display only say 20 records per page, is this possible in report designer?

    Any help appreciated.

    Thanks,

    Lekha

  • Hi, s.lekha.

    RAQ Report can help users to do page break easily. For your problem, you only need to set the number of records on each page as shown below:

    Regards,

    becklery.

    RAQ Report: Web-based Excel-like Java reporting tool[/url]

  • Hi,

    Thanks for the response. I have come across your posts regarding RAQ reports, but iam not familiar with this tool. Is this a reporting tool like SSRS? As Iam using SSRS for creating reports, will be helpful if there are any workarounds with this like RAQ.

    Regards,

    lekha

  • Yes, you can use grouping, and do a page break after each group.

    You'll need an additional grouping column in your dataset which you can produce something like this:

    select groupnumber = (ROW_NUMBER() OVER(ORDER BY somedata)-1)/3 -- Change this constant to set the group size,

    * from

    (

    select somedata = '1'

    union

    select '2'

    union

    select '3'

    union

    select '4'

    union

    select '5'

    union

    select '6'

    union

    select '7'

    union

    select '8'

    ) s1

    Where the subquery is your report data.

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

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