Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

extra digits for page number 1

Status
Not open for further replies.

NickIntersoft

Technical User
Mar 5, 2007
12
BE
I use page number from the special fields, i want to use 3 digits.
e.g.: page 1 has te be page 001
page 99 has to be page 099
and from page 100 it stays 100

same for total page count.

This is al for my page header and report header (report header is suppressed from page 2 and page header is supressed on page 1).

thanks
Nick
 
Try a formula field,
Code:
if pagenumber >= 100 then "Page 100"
else ToText(Pagenumber, "000")
The same logic for TotalPageCount

It helps to give your Crystal version - 8, 8.5, 9, 10, 11 or whatever. Methods sometimes change between versions, and higher versions have extra options.

[yinyang] Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10 [yinyang]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top