Greetings -
I have the following formula:
if pagenumber = totalpagecount then
'Page 1 of ' & totalpagecount
else
'Page ' & PageNumber +1 & ' of '& Totalpagecount
The formula works fine for what I want it to do with one exception. The 'PageNumber' and 'TotalPageCount' items print with 2 decimal places each. I've tried the Round() and Fix() to no avail per the example below.
if pagenumber = totalpagecount then
'Page 1 of ' & fix(totalpagecount,0)
else
'Page ' & fix(PageNumber +1,0) & ' of '& fix(Totalpagecount,0)
Any assistance is greatly appreciated.
Thank you!
Jason
I have the following formula:
if pagenumber = totalpagecount then
'Page 1 of ' & totalpagecount
else
'Page ' & PageNumber +1 & ' of '& Totalpagecount
The formula works fine for what I want it to do with one exception. The 'PageNumber' and 'TotalPageCount' items print with 2 decimal places each. I've tried the Round() and Fix() to no avail per the example below.
if pagenumber = totalpagecount then
'Page 1 of ' & fix(totalpagecount,0)
else
'Page ' & fix(PageNumber +1,0) & ' of '& fix(Totalpagecount,0)
Any assistance is greatly appreciated.
Thank you!
Jason