{"id":132,"date":"2010-07-22T13:57:00","date_gmt":"2010-07-22T08:27:00","guid":{"rendered":"https:\/\/www.inogic.com\/blog\/?p=132"},"modified":"2010-07-22T13:57:00","modified_gmt":"2010-07-22T08:27:00","slug":"how-to-display-fixed-number-of-rows-in-a-table-using-srs-report","status":"publish","type":"post","link":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/","title":{"rendered":"How to display fixed number of rows in a table using SRS Report"},"content":{"rendered":"<p><span>There are times when you would like to restrict the number of rows that are being displayed on one page in a table. By default if you add a table to a report and set the datasource to a dataset, it will list out all the rows of the dataset in there and if the table data exceeds the report page then it moves to the next page. <\/span><br \/><span><br \/>Suppose now you want to make sure that there should be note more than 3 rows on each page in the table, you can achieve this by making the following changes to your report.<br \/>Say the default query being used to retrieve data is the following<br \/><strong><\/strong><br \/><strong>SELECT productdescription, quantity, priceperunit, extendedamount FROM FilteredQuoteDetail <\/strong><\/p>\n<p>And it will display the following result set. <\/span><\/p>\n<p><a href=\"http:\/\/3.bp.blogspot.com\/_pMlyDuF-ngc\/TEhZlZmbtGI\/AAAAAAAAAe8\/r8jHKuAgjvE\/s1600\/6.jpg\"><img decoding=\"async\" src=\"http:\/\/3.bp.blogspot.com\/_pMlyDuF-ngc\/TEhZlZmbtGI\/AAAAAAAAAe8\/r8jHKuAgjvE\/s400\/6.jpg\" border=\"0\" alt=\"\"><\/a><br \/><span>To fix the rows of the page you need to change the Query to create a custom column in the query that you can use for grouping the rows on a page. Lets call that the page number for each of the record.<br \/>We have used the Row_Number() function to group the rows so that there are only 3 rows on each page.<\/p>\n<p><\/span><span><strong>SELECT productdescription, quantity, priceperunit, extendedamount, page = (CASE WHEN (Row_Number()<br \/>OVER (ORDER BY productdescription) % 3 = 0) THEN (Row_Number() OVER (ORDER BY productdescription) \/ 3) &#8211; 1 ELSE (Row_Number() OVER (ORDER BY productdescription)<br \/>\/ 3) END)<br \/>FROM FilteredQuoteDetail<\/strong><\/p>\n<p>It displays the following result set. <\/span><\/p>\n<p><span><br \/><\/span><a href=\"http:\/\/2.bp.blogspot.com\/_pMlyDuF-ngc\/TEhPqunlLaI\/AAAAAAAAAeE\/KzS3ubTk10M\/s1600\/5.jpg\"><img decoding=\"async\" border=\"0\" alt=\"\" src=\"http:\/\/2.bp.blogspot.com\/_pMlyDuF-ngc\/TEhPqunlLaI\/AAAAAAAAAeE\/KzS3ubTk10M\/s400\/5.jpg\"><\/a><br \/><span>Now you need to add the list the on the report page and Group this list by the page column as shown in the below screenshot.<br \/><\/span><br \/><a href=\"http:\/\/4.bp.blogspot.com\/_pMlyDuF-ngc\/TEhQSD41E5I\/AAAAAAAAAeM\/KH2FYJkKzB0\/s1600\/4.jpg\"><img decoding=\"async\" border=\"0\" alt=\"\" src=\"http:\/\/4.bp.blogspot.com\/_pMlyDuF-ngc\/TEhQSD41E5I\/AAAAAAAAAeM\/KH2FYJkKzB0\/s400\/4.jpg\"><\/a><br \/><span>Now add the table under this list. As shown in the below screenshot.<br \/><\/span><br \/><a href=\"http:\/\/3.bp.blogspot.com\/_pMlyDuF-ngc\/TEhQ1elzkyI\/AAAAAAAAAec\/nZtG6g4jrn8\/s1600\/3.jpg\"><img decoding=\"async\" border=\"0\" alt=\"\" src=\"http:\/\/3.bp.blogspot.com\/_pMlyDuF-ngc\/TEhQ1elzkyI\/AAAAAAAAAec\/nZtG6g4jrn8\/s400\/3.jpg\"><\/a><br \/><span>Now you run this report then data display in 2 pages.<br \/><\/span><br \/><a href=\"http:\/\/3.bp.blogspot.com\/_pMlyDuF-ngc\/TEhRD1Fd8rI\/AAAAAAAAAek\/nqfIXBJy0Nc\/s1600\/2.jpg\"><img decoding=\"async\" border=\"0\" alt=\"\" src=\"http:\/\/3.bp.blogspot.com\/_pMlyDuF-ngc\/TEhRD1Fd8rI\/AAAAAAAAAek\/nqfIXBJy0Nc\/s400\/2.jpg\"><\/a><a href=\"http:\/\/4.bp.blogspot.com\/_pMlyDuF-ngc\/TEhRtH39mfI\/AAAAAAAAAe0\/dPtGZUUjVe8\/s1600\/1.jpg\"><img decoding=\"async\" border=\"0\" alt=\"\" src=\"http:\/\/4.bp.blogspot.com\/_pMlyDuF-ngc\/TEhRtH39mfI\/AAAAAAAAAe0\/dPtGZUUjVe8\/s400\/1.jpg\"><\/a><span> There you are!!!<\/span> <\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are times when you would like to restrict the number of rows that are being displayed on one page in a table. By default if you add a table to a report and set the datasource to a dataset, it will list out all the rows of the dataset in there and if the\u2026 <span class=\"read-more\"><a href=\"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/\">Read More: How to display fixed number of rows in a table\u2026 &raquo;<\/a><\/span><\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[19,58],"tags":[822],"class_list":["post-132","post","type-post","status-publish","format-standard","hentry","category-dynamics-crm","category-ssrs-reports","tag-fixed-row-in-table"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"There are times when you would like to restrict the number of rows that are being displayed on one page in a table. By default if you add a table to a report and set the datasource to a dataset, it will list out all the rows of the dataset in there and if the\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Tushar\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Microsoft Dynamics 365 CRM Tips and Tricks - By Inogic\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to display fixed number of rows in a table using SRS Report - Microsoft Dynamics 365 CRM Tips and Tricks\" \/>\n\t\t<meta property=\"og:description\" content=\"There are times when you would like to restrict the number of rows that are being displayed on one page in a table. By default if you add a table to a report and set the datasource to a dataset, it will list out all the rows of the dataset in there and if the\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/3.bp.blogspot.com\/_pMlyDuF-ngc\/TEhZlZmbtGI\/AAAAAAAAAe8\/r8jHKuAgjvE\/s400\/6.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/3.bp.blogspot.com\/_pMlyDuF-ngc\/TEhZlZmbtGI\/AAAAAAAAAe8\/r8jHKuAgjvE\/s400\/6.jpg\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2010-07-22T08:27:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2010-07-22T08:27:00+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inogicindia\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@inogic\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to display fixed number of rows in a table using SRS Report - Microsoft Dynamics 365 CRM Tips and Tricks\" \/>\n\t\t<meta name=\"twitter:description\" content=\"There are times when you would like to restrict the number of rows that are being displayed on one page in a table. By default if you add a table to a report and set the datasource to a dataset, it will list out all the rows of the dataset in there and if the\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@inogic\" \/>\n\t\t<meta name=\"twitter:image\" content=\"http:\/\/3.bp.blogspot.com\/_pMlyDuF-ngc\/TEhZlZmbtGI\/AAAAAAAAAe8\/r8jHKuAgjvE\/s400\/6.jpg\" \/>\n\t\t<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t\t<meta name=\"twitter:data1\" content=\"Tushar\" \/>\n\t\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2010\\\/07\\\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\\\/#blogposting\",\"name\":\"How to display fixed number of rows in a table using SRS Report - Microsoft Dynamics 365 CRM Tips and Tricks\",\"headline\":\"How to display fixed number of rows in a table using SRS Report\",\"author\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/3.bp.blogspot.com\\\/_pMlyDuF-ngc\\\/TEhZlZmbtGI\\\/AAAAAAAAAe8\\\/r8jHKuAgjvE\\\/s400\\\/6.jpg\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2010\\\/07\\\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\\\/#articleImage\"},\"datePublished\":\"2010-07-22T13:57:00+05:30\",\"dateModified\":\"2010-07-22T13:57:00+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2010\\\/07\\\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2010\\\/07\\\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\\\/#webpage\"},\"articleSection\":\"Dynamics CRM, SSRS Reports, Fixed row in table\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2010\\\/07\\\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/#listItem\",\"name\":\"Dynamics CRM\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/#listItem\",\"position\":2,\"name\":\"Dynamics CRM\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2010\\\/07\\\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\\\/#listItem\",\"name\":\"How to display fixed number of rows in a table using SRS Report\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2010\\\/07\\\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\\\/#listItem\",\"position\":3,\"name\":\"How to display fixed number of rows in a table using SRS Report\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/#listItem\",\"name\":\"Dynamics CRM\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\",\"name\":\"Microsoft Dynamics 365 CRM Tips and Tricks\",\"description\":\"By Inogic\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/inogic-logo.png\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2010\\\/07\\\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\\\/#organizationLogo\",\"width\":1000,\"height\":325,\"caption\":\"inogic logo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2010\\\/07\\\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/inogicindia\",\"https:\\\/\\\/twitter.com\\\/inogic\",\"https:\\\/\\\/www.instagram.com\\\/inogicindia\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCM4V7ousgLSu1hbOEv4DUuQ\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/inogicindia\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/\",\"name\":\"Tushar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2010\\\/07\\\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/839d9ae7d2b941d2d09e91df322267a429821f2ce5494302b53bd5ca3679f1a0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Tushar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2010\\\/07\\\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\\\/#webpage\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2010\\\/07\\\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\\\/\",\"name\":\"How to display fixed number of rows in a table using SRS Report - Microsoft Dynamics 365 CRM Tips and Tricks\",\"description\":\"There are times when you would like to restrict the number of rows that are being displayed on one page in a table. By default if you add a table to a report and set the datasource to a dataset, it will list out all the rows of the dataset in there and if the\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2010\\\/07\\\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"datePublished\":\"2010-07-22T13:57:00+05:30\",\"dateModified\":\"2010-07-22T13:57:00+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/\",\"name\":\"Microsoft Dynamics 365 CRM Tips and Tricks\",\"alternateName\":\"Inogic\",\"description\":\"By Inogic\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to display fixed number of rows in a table using SRS Report - Microsoft Dynamics 365 CRM Tips and Tricks","description":"There are times when you would like to restrict the number of rows that are being displayed on one page in a table. By default if you add a table to a report and set the datasource to a dataset, it will list out all the rows of the dataset in there and if the","canonical_url":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/#blogposting","name":"How to display fixed number of rows in a table using SRS Report - Microsoft Dynamics 365 CRM Tips and Tricks","headline":"How to display fixed number of rows in a table using SRS Report","author":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"publisher":{"@id":"https:\/\/www.inogic.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"http:\/\/3.bp.blogspot.com\/_pMlyDuF-ngc\/TEhZlZmbtGI\/AAAAAAAAAe8\/r8jHKuAgjvE\/s400\/6.jpg","@id":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/#articleImage"},"datePublished":"2010-07-22T13:57:00+05:30","dateModified":"2010-07-22T13:57:00+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/#webpage"},"isPartOf":{"@id":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/#webpage"},"articleSection":"Dynamics CRM, SSRS Reports, Fixed row in table"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.inogic.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/#listItem","name":"Dynamics CRM"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/#listItem","position":2,"name":"Dynamics CRM","item":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/#listItem","name":"How to display fixed number of rows in a table using SRS Report"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/#listItem","position":3,"name":"How to display fixed number of rows in a table using SRS Report","previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/#listItem","name":"Dynamics CRM"}}]},{"@type":"Organization","@id":"https:\/\/www.inogic.com\/blog\/#organization","name":"Microsoft Dynamics 365 CRM Tips and Tricks","description":"By Inogic","url":"https:\/\/www.inogic.com\/blog\/","logo":{"@type":"ImageObject","url":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2023\/02\/inogic-logo.png","@id":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/#organizationLogo","width":1000,"height":325,"caption":"inogic logo"},"image":{"@id":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/inogicindia","https:\/\/twitter.com\/inogic","https:\/\/www.instagram.com\/inogicindia\/","https:\/\/www.youtube.com\/channel\/UCM4V7ousgLSu1hbOEv4DUuQ","https:\/\/www.linkedin.com\/company\/inogicindia"]},{"@type":"Person","@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author","url":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/","name":"Tushar","image":{"@type":"ImageObject","@id":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/839d9ae7d2b941d2d09e91df322267a429821f2ce5494302b53bd5ca3679f1a0?s=96&d=mm&r=g","width":96,"height":96,"caption":"Tushar"}},{"@type":"WebPage","@id":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/#webpage","url":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/","name":"How to display fixed number of rows in a table using SRS Report - Microsoft Dynamics 365 CRM Tips and Tricks","description":"There are times when you would like to restrict the number of rows that are being displayed on one page in a table. By default if you add a table to a report and set the datasource to a dataset, it will list out all the rows of the dataset in there and if the","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.inogic.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/#breadcrumblist"},"author":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"creator":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"datePublished":"2010-07-22T13:57:00+05:30","dateModified":"2010-07-22T13:57:00+05:30"},{"@type":"WebSite","@id":"https:\/\/www.inogic.com\/blog\/#website","url":"https:\/\/www.inogic.com\/blog\/","name":"Microsoft Dynamics 365 CRM Tips and Tricks","alternateName":"Inogic","description":"By Inogic","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.inogic.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Microsoft Dynamics 365 CRM Tips and Tricks - By Inogic","og:type":"article","og:title":"How to display fixed number of rows in a table using SRS Report - Microsoft Dynamics 365 CRM Tips and Tricks","og:description":"There are times when you would like to restrict the number of rows that are being displayed on one page in a table. By default if you add a table to a report and set the datasource to a dataset, it will list out all the rows of the dataset in there and if the","og:url":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/","og:image":"https:\/\/3.bp.blogspot.com\/_pMlyDuF-ngc\/TEhZlZmbtGI\/AAAAAAAAAe8\/r8jHKuAgjvE\/s400\/6.jpg","og:image:secure_url":"https:\/\/3.bp.blogspot.com\/_pMlyDuF-ngc\/TEhZlZmbtGI\/AAAAAAAAAe8\/r8jHKuAgjvE\/s400\/6.jpg","article:published_time":"2010-07-22T08:27:00+00:00","article:modified_time":"2010-07-22T08:27:00+00:00","article:publisher":"https:\/\/www.facebook.com\/inogicindia","twitter:card":"summary_large_image","twitter:site":"@inogic","twitter:title":"How to display fixed number of rows in a table using SRS Report - Microsoft Dynamics 365 CRM Tips and Tricks","twitter:description":"There are times when you would like to restrict the number of rows that are being displayed on one page in a table. By default if you add a table to a report and set the datasource to a dataset, it will list out all the rows of the dataset in there and if the","twitter:creator":"@inogic","twitter:image":"http:\/\/3.bp.blogspot.com\/_pMlyDuF-ngc\/TEhZlZmbtGI\/AAAAAAAAAe8\/r8jHKuAgjvE\/s400\/6.jpg","twitter:label1":"Written by","twitter:data1":"Tushar","twitter:label2":"Est. reading time","twitter:data2":"1 minute"},"aioseo_meta_data":{"post_id":"132","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-02-02 05:56:59","updated":"2025-07-03 21:30:02","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.inogic.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/\" title=\"Dynamics CRM\">Dynamics CRM<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to display fixed number of rows in a table using SRS Report\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.inogic.com\/blog"},{"label":"Dynamics CRM","link":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/"},{"label":"How to display fixed number of rows in a table using SRS Report","link":"https:\/\/www.inogic.com\/blog\/2010\/07\/how-to-display-fixed-number-of-rows-in-a-table-using-srs-report\/"}],"_links":{"self":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts\/132","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/comments?post=132"}],"version-history":[{"count":0,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts\/132\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/media?parent=132"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/categories?post=132"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/tags?post=132"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}