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

Crystal Error

Status
Not open for further replies.

needmoremoney

Technical User
Mar 30, 2005
123
US
Hello I need some help with this:

I have a formula: @Total
.............
numbervar reqlength := 11;
stringvar string := totext(Count ({@EESSN}, {Query1.id}), "00");
numbervar currlength := length(string);
if currlength > reqlength then
string := string[currlength - reqlength]
else
string := replicatestring("0", reqlength-currlength) + string;
.............

The formula @EESSN is:

numbervar reqlength := 9;
stringvar string := replace({Query1.ssn},"-","");
numbervar currlength := length(string);
if currlength > reqlength then
string := string[1 to reqlength]
else
string := string + space(reqlength - currlength);



What I'm trying to do is count how many records for each group. I'm getting the following error when I try to save the formula: "The summary/running total field could not be created."

Any ideas and help, thanks.

I'm using crystal 8.5.
 
It's okay.

I figured it out. My group name was off that's why I was getting the error.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top