How can get the record number in details section not including the suppressed?
I have tried the following:
1. Right Click on any of the fields and select "Format Field.."
2. In the "Format" editor, go to "Common" tab.
4. Now go to the formula button "X+2" beside "Display String" and place the following code:
numberVar x;
WhilePrintingRecords ;
x:=x+1;
ToText({Employee.Employee ID},0) \\<Database Record>
- Created formula @aa and placed the following code:
numberVar x;
WhilePrintingRecords ;
x
but it gives me a record number starting from 0. I want it to start from 1. can anybody help me?