How can i get page numbers in the page footer to not show on the first page? I would like them to only show starting on page 2 (if there is a page 2 and beyond). I am using the Designer to add the page numbers now, so i merely inserted the expression =Global.CurrentPage, which is showing the page number. I also want it to display, for example:
Page 2 of 12
instead of just "2"
Thanks!
Hi Karl,
Thank you for your post. I was wondering if have managed to resolve your issue. It would be great, if you could attach a sample application that shows your scenario.
Please in future create a new post for every of you new questions.
Hi
I stuck on a similar Problembecause I want view/hide Tables on the page header:lets say on page 1 I want show a different table (with more infos) and from page 2 just a smaller table with brief infos
I tried the same visibility databinding property without success :(
How can I use the visibility property?Maybe there is a workaround?
And the Same for the Pagenumber label
Hi Travis,
Thank you for your feedback. I was looking into your question and I can suggest you try :
=If(Global.CurrentPage=1,"" , Global.CurrentPage)
In order to show “Page 2 of 39” e.g., you can add to additional label before and after the main one like :
=If(Global.CurrentPage=1,"" , "Page")
=If(Global.CurrentPage=1,"" , "of 39")
Please let me know, if you need any further assistance on this matter.
why doesn't the following work to hide the page number label on page 1?
Visible Property->DataBinding->
=If(Global.CurrentPage=1, False, True)
I was able to figure out the "Page 1 of 2" syntax.
="Page "+"Global.CurrentPage+" of "+Global.TotalPages