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

Can not get sum of summary colums 1

Status
Not open for further replies.

north2060

Programmer
Apr 11, 2002
23
AU
I am trying to get the total of summary fields. I have five summary fields and created a formula field which add up all summary fields. I get correct total if all summary fields have the value otherwise it is blank. Can I have a suggestion how I can get the total of the defined summary fields?
 
For Crystal 8.5, try testing 'isnull' before trying to add a summary field. A standard format is
if isnull ({your.field}) then 0 else {your.field}

Crystal always stops when it finds a null that hasn't been tested for.

Madawc Williams
East Anglia, Great Britain
 
Thank you! for your help. I haven't tried yet but I think it will work.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top