cancel
Showing results for 
Search instead for 
Did you mean: 

numbering records within each group

Former Member
0 Kudos

i want to numbering records within a group, (put 1, 2, 3.. in front of each record)

"RecordNumber" function will numbering since the very first one of the report,

i also tried formula "coun":

WhilePrintingRecords;

numbervar coun;

coun:=coun+1;

this also numbering from the beginning of the report.

how can i get a record number from 1 for each group?

hiccup

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

To achive what you are looking for needs 2 formulas to be created :

@init // place this formula in group header

WhilePrintingRecords;

numbervar coun:=0;

@accu // place this formula in your detail under group

WhilePrintingRecords;

numbervar coun;

coun:=coun+1;

This will give serial number for each group.

Thanks,

Sastry

Former Member
0 Kudos

thanks, your two little formula did the trick.

Answers (1)

Answers (1)

Former Member
0 Kudos

running total on change of "group" use count does that do what you want?