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!

Start Page 1 on second page 1

Status
Not open for further replies.

jasonhuibers

Programmer
Sep 12, 2005
290
CA
Group Header 1 = EmployeeID
GroupHeader1a - Cover Page
GroupHeader1b - Employee Info
GroupHeader1c - Employee Interests


1)GroupHeader1B on a new page
2)GroupHeader1A - no page number, GroupHeader1B = Page 1, GroupHeader1C = Page 2
 
You could do a formula field that subtracts one from the actual page number. Set it to suppress when the page number is 1.

[yinyang] Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10 [yinyang]
 
Ok but how do I get the forumla to reset for each GroupHeader1a??
 
Section Expert -> Select Group Header 1a on left and then tick the box marked 'Reset page number after'

'J

CR8.5 / CRXI - Discovering the impossible
 
It worked perfect thanks!!!

One question I want to have a disclaimer appear on the last page for each employee... How can I show only on last page?
 
Where on the last page? If in a group footer or page footer section, you could use a formula like this:

if onlastrecord or
{table.employeeID} <> next({Table.employeeID}) then
"Disclaimer: "

-LB

 
My disclaimer is in the subreport which is in the page footer
 
Is the subreport's purpose ONLY to display the disclaimer so that the entire subreport could be conditionally suppressed? If so, select the subreport->format subreport->suppress->x+2 and enter:

not onlastrecord and
{table.employeeID} = next({Table.employeeID})

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top