CodingIsFun
Programmer
Hi all experts:
I am trying to get some custom paging to work. I have taken over this project from someone else and do not work with crystal reports alot so parden my terminology.
The custom paging I need is the following:
The initial page could be as many pages it wants to be within its own section.
I have a page break on the next section which can be 1 to many. Meaning if I have 5 of these sections they all need to start at page 1 again and represent the total pages for the individual section. The following should help:
-------------------------
first section
-------page 1 of 1-------
-------------------------
section 2 item #1
--------page 1 of 2------
section 2 item #1 next page
--------page 2 of 2------
-------------------------
section 2 item #2
--------page 1 of 1------
The current formula is giving back all sorts of wierd numbers:
NumberVar PassengersCount := {FaxData.PaxCount};
NumberVar customTotal := (TotalPageCount -1)/PassengersCount;
if(PageNumber = 1) then
"Page " + totext(PageNumber,0,"","") + " of 1"
else
"Page " + totext(PageNumber-1-((groupNumber-1)*customTotal),0,"","") + " of " + totext(customTotal,0,"","")
)
As I mentioned this is not my code and I'm a noobie when it comes to crystal reports and formula work
Any help with this would be greatly appreciated.
Thanks in advance...
I am trying to get some custom paging to work. I have taken over this project from someone else and do not work with crystal reports alot so parden my terminology.
The custom paging I need is the following:
The initial page could be as many pages it wants to be within its own section.
I have a page break on the next section which can be 1 to many. Meaning if I have 5 of these sections they all need to start at page 1 again and represent the total pages for the individual section. The following should help:
-------------------------
first section
-------page 1 of 1-------
-------------------------
section 2 item #1
--------page 1 of 2------
section 2 item #1 next page
--------page 2 of 2------
-------------------------
section 2 item #2
--------page 1 of 1------
The current formula is giving back all sorts of wierd numbers:
NumberVar PassengersCount := {FaxData.PaxCount};
NumberVar customTotal := (TotalPageCount -1)/PassengersCount;
if(PageNumber = 1) then
"Page " + totext(PageNumber,0,"","") + " of 1"
else
"Page " + totext(PageNumber-1-((groupNumber-1)*customTotal),0,"","") + " of " + totext(customTotal,0,"","")
)
As I mentioned this is not my code and I'm a noobie when it comes to crystal reports and formula work
Any help with this would be greatly appreciated.
Thanks in advance...