Hi...
We are using CR 9.0 - reporting from Peregrine Service Center P4 Database...
I have a requirement to add a field to a report that shows a count of the number of 'hits' reported from the formula below...
Currently the formula below lists all the SCAutomate updates - we want to tally those.
whileprintingrecords;
stringvar array Sc:= split({probsummarym1.update.action},"SCAutomate ");
stringvar array ScOut;
redim ScOut[ubound(Sc)];
numbervar counter;
For counter := 1 to ubound(Sc) do(
ScOut[Counter] := "SCAutomate " + left(Sc[counter],instr(Sc[counter]," "))
);
join(ScOut,",")
Thanks for any help on this...
We are using CR 9.0 - reporting from Peregrine Service Center P4 Database...
I have a requirement to add a field to a report that shows a count of the number of 'hits' reported from the formula below...
Currently the formula below lists all the SCAutomate updates - we want to tally those.
whileprintingrecords;
stringvar array Sc:= split({probsummarym1.update.action},"SCAutomate ");
stringvar array ScOut;
redim ScOut[ubound(Sc)];
numbervar counter;
For counter := 1 to ubound(Sc) do(
ScOut[Counter] := "SCAutomate " + left(Sc[counter],instr(Sc[counter]," "))
);
join(ScOut,",")
Thanks for any help on this...