[TotalPages#]+1
I need to have page numbers on the generated pdf-report footer. On first page it should say "1 (2)" where first number is current page num and second total pages. Problem is that generated pdf-report goes to separate digital signing process, where a signing page is added to end of file, making total pages one higher. Two page original report should then have "1 (3)" on it's footer. Adding "[Page#] ([TotalPages#]+1)" gives "1 (2+1)" not required "1 (3)". What would be the correct syntax for getting this? Using FastReport 2023.1 with Delphi.
Comments
Support gave the correct syntax: [<TotalPages>+1]
That works!