Hi,
I have a crystal report formula for row numbering that doesnt seem to work. Just repeats 001 on all rows.
NumberVar rowNum;
If OnFirstRecord or {Invoice Number Field} <> Previous({Invoice Number Field}) then
rowNum := 0;
rowNum := rowNum + 1;
Right('000' + toText(rowNum, 0, ''), 3)
I have a crystal report formula for row numbering that doesnt seem to work. Just repeats 001 on all rows.
NumberVar rowNum;
If OnFirstRecord or {Invoice Number Field} <> Previous({Invoice Number Field}) then
rowNum := 0;
rowNum := rowNum + 1;
Right('000' + toText(rowNum, 0, ''), 3)