Line count in Report

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using Office 2003 and Windows XP;

I have a pretty basic report that contains many records; I need to include a
line (record count) at the left edge of the report so that each item is
numbered as in:

1 Item One
2 Item Two
3 Item One
4 Item Three
5 Item Two
etc.

How can I accomplish this? - A formula I think in a text box? Please help...

Thanks much in advance.
 
In the text box control source write

=1

And change the RunningSum property of this text box to Yes, so it will add 1
to each recrd
 
Back
Top