Counting Records

mixedguy

Registered User.
Local time
Yesterday, 21:22
Joined
Jun 12, 2002
Messages
52
Without using the Autonumber, I'm trying to create a Report where each time the report is run it counts exactly how many records are there. I know how to get the total number of records. I'm just looking for a function where it will put a record count next to my record. ie

1. Record 1
2. Record 2
3. Record 3
4. Record 4
5. Record 5
etc...

I'm looking for the record count on the left on my report.
Thanks in advance for any help.
 
With a report, the solution is trivial. Add a control. Make its ControlSource
=1
Set its RunningSum property to OverAll.

No code required:)
 

Users who are viewing this thread

Back
Top Bottom