needmoremoney
Technical User
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.
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.