I Have created a Cristal report that contains details about the job the details contains in the page header consist of job no ,job name...
I want display the report in different page when the job no changes
the idea is that all the jobs having the same jobno should display in one page and if the jobno changes at the middle of one page then the details about that job should display on other page not in the same page
You need to add a group on jobno; set group to 'repeat group header on each page'. Add desired fields to group header. Suppress group footer; set 'force new page after' in group footer.
I checked Keep together option in group expert options ... Problem Solved
Related
I want to print invoices and each invoice has its own products. I use stored procedures to get the data. I want to print the invoice with all its details on a page followed by the other invoice on the next page, and so on.
Please clarify what is the problem.
If it's the need to start each invoice on a new page, then Group the report on Invoice number and set the Group Footer property of 'New Page After'.
You can use the details section of your report for that.
In the details section add the recurring fields from your data source and create the the form of your invoice. It will automatically repeat everything from the section (elements and all) with each row returned from the data source.
Depending on the page setup you can have multiple invoices on one page as well as on separate pages.
Hope this helped but you need to be more precise with your questions.
Is it possible to create a crystal report with 2 pages for every group record ?
The report requirement is a back to back printing,
the first page data is from sql and the second page is just a static report.
currently this is the design of my report.
how can I add a 2nd page for every record so that I can start designing on it.
Thank you.
Two possibilities are:
Add a second group on the same criteria, so that you have two group headers and footers for every group. Put the content for the static page in the second group footer and make sure you select New Page Before
Add a second group footer to your existing group. Again, set New Page Before. Add a subreport if needed.
I have a report with a group, but on the first page there is general information and I want the records of the group to be shown from the second page. Currently the group starts on the first page, how can I start the second page?
With the below, does not show the group on the first page but on the second page does not show the first group records. That is, the group starts on the first page only that hides the records, I want the group to start on the second page.
Report Header
Page Headers
GroupHeader (suppress if = first page)
Details
GroupFooter
Report Footer
Page Footer
Thanks
If I understand correctly, you want to have a page 2 pages for formatting.
In that case, do the following :
Open the report in Design View
Right click on the Page Footer section and select Section Expert
Make sure the Page Footer section is selected in the Section Expert dialog box.
Check the box that says "New Page After"
Click Save and Close and then click OK.
I have a crystal report ,into which I am pulling data from the database.
The data is pulled and displayed perfectly, but I want it to be displayed on two separate pages with different page headers.
Ex
name loginid delivery asp/net com
ud ud#gmail.com yes asp com
currently these fields are displayed on one page but i want it like as follows:
page 1
name loginod delivery
ud ud#gmail.com yes
page 2
asp/net com
asp com
Can any1 help?
Insert a second details section
Position fields as desired
Add this formula to details A conditional-suppression formula:
// suppress section when page number is even (e.g. 2,4,6,...)
Remainder(RecordNumber,2)=0
Add this formula to details B conditional-suppression formula:
// suppress section when page number is odd (e.g. 1,3,5,...)
Remainder(RecordNumber,2)<>0
I have crystal report. I have grouping in fields.
I have set NewPageAfter = true for group. i supressed page header.. still i am getting first page blank in report..
how can i solve this issue?
Thanks in Advance
NewPageAfter=true needs to be set at the "bottom" of the group; in the footer. If you set it in the group header it will print the header and then force a page break.
Make sure it is also not ticked on any of the headers above it and ensure "NewPageBefore" is un-ticked in the group details.
You should also try un-ticking "Keep Together" - as this will allow crystal to split the group over multiple pages.