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

Grandtotal from groupfoots

Status
Not open for further replies.

CTImaster

Programmer
Joined
Feb 28, 2003
Messages
1
Location
SE
Hi all!

I have a problem with totals. I have found the same question in another forum but not the total answer. Maybe you can give it to me?

I have a report with nested goups. In third group I do a count on all records in detail section. Then I want to do a grandtotal in the botom. This is quite easy. My problem is that the third group is listing "channels of incoming information". That is Mail/Phone/Email. The grand total should also be devided like that.

Example:

Group Header1
Group Header2
Phone Total 100 [group header 3]
Mail Total 50 [group header 3]
Email Total 150 [group header 3]
Group Header 2
Phone Total 100 [group header 3]
Mail Total 50 [group header 3]
Email Total 150 [group header 3]
Report Footer
Phone Grand Total 200
Mail Grand Total 100
Email Grand Total 300


If I a have a variable which I do a add operation on in GH3 and then displayes the variable in RF. Then I get the value 600.

Any idea?
 
I'd create 3 formula fields :
{@Phone}
if {IncomingInfoField} = "Phone" then 1 else 0

{@Email}
if {IncomingInfoField} = "Email" then 1 else 0

{@Mail}
if {IncomingInfoField} = "Mail" then 1 else 0

You can then use this info to sum in the relevant headers/footers. Reebo
Scotland (Going mad in the mist!)
 
Or, you could use a cross-tab in the report footer. Ken Hamady, On-site Custom Crystal Reports Training & Consulting
Public classes and individual training.
Expert's Guide to Formulas / Guide to Crystal in VB
- tek@kenhamady.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top