For displaying page numbers in SSRS reports

For displaying page number and total pages on ssrs reports like (Page 1 of 10) you have to use the following command which you write in test box as an expression.
command is (= "Page " & Globals!PageNumber & " of " & Globals!TotalPages)

 "Page "                        (for displaying Page)
 &                                  (for concatenating text with formula)
Globals!PageNumber   (formula for displaying current page number)
 " of "                            (for displaying of)
 Globals!TotalPages     (formula for displaying total page numbers)

Comments

Popular posts from this blog

TSQL To Get All the Names of tables and Databases whose data have changed in last 24 Hours

To Get All the Names of tables and Databases their data have changed in last 24 Hours And Backup those databases

Apply paging in procedure