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

Group required at CR?

Status
Not open for further replies.

karnd

Programmer
Feb 1, 2003
190
US
Hi,

I have a question(i am new to CR but not very new)

Suppose the Groups created at the DB level on the SQL query then should i need to create GROUP on those item in Crystal?
In that case, should the values make difference on the report(reason asking - i am dealing with the amounts and percentages at the detail level under those GROUP items)

If the values differs then instead of GROUP should i use SECTION?

one more question - What is an equivalent concept in Crystal for the Page Breaks?

Please throw valuable hints
Regards,
 
Hi,

Could some one provide hints on the previous questions, please?

Regards,
 
Perhaps it's just me, but I don't understand your questions.
Consider rephrasing.

Cheers,
- Ido

Visual CUT & DataLink Viewer:
view, e-mail, export, burst, distribute, and schedule Crystal Reports.
 
Ido is right, this is a little hard to follow. If you created a SQL query in order to create a group summary, as in:

select
min(table.`amt`) as minamt, table.`ID`
from
`table` table
group by table.`ID`

...you would still need to insert a group on {table.ID} in the report. The value minamt would be a summary with the same value if placed in the detail or in the group section.

For page breaks, you would go into the section expert and select the section where you want the page break to occur and then check either "new page before" or "new page after".

-LB
 
Hi,

I am sorry if the question does not make sense but with the answer i will make sure once the data populates(it is yet to be populated that is why i put the question) and get back to you.but looks like i got what i wanted from you.

I will try as per said for the Page breaks.

Regards,
 
I'm not sure why you would need a group within the report if you're not doing anything iteratively at the group level within the report.

Most databases will return the data sorted by the group, and you can just palce the rewsults in the details.

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top