Hi All,
How can I get the total no of page for each grouping? I have read the msn document to reset group page no and it works.
I want to display the page no like 1 (group page no) of 5 (group total page no).
Thanks in advance.
Wilson
Hi, If you have a textbox in RDLC where in you want to display the pagenumber just write the textbox expression as =Globals!PageNumber Also, total number of pages can be displayed by =Globals!TotalPages Hope this helps
I want the grouping total page, not the total page of the whole report.
Thanks
Insert a new row for that group and do something like
=Sum(Cdec(Fields!FieldName.Value))
Thanks for your reply. But I want the total page no of the group, not the sum of a field.