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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PageNofM Backward?? 1

Status
Not open for further replies.

ppark001

MIS
Jul 11, 2001
102
US
I need to have my report have page numbers backward. In other words, in decending order. Any ideas?

Thanks All

p.park

Crystal 8.5
Providex (MAS200/90) Accounting database
 
Create formulas to use to set it and for use in the page footer or page header:

Report header formula to set it:
numbervar MyPage:= totalpagecount+1;

Then in the page footer use:

numbervar MyPage:=MyPage-1;
"Page " & totext(MyPage,0,"") & " of " & totext(totalpagecount,0,"")

-k

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top