I need a running number in a DataBand. The report is grouped and I want to have the running number to start with 1 in each group like this:
Code: Select all
[Group 1]
[1] <- Field showing the current running number
[2]
[3]
[Group 2]
[1]
[2]
[Group 3]
[1]
[2]
[3]
[4]
...
How can I best achieve this?
Cheers,
Pascal