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

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

Break comma separated into multiple rows in MYSQL

mysql global search procedure