How do you print the row numbers (without column headings)?

L

Lori Mejia

I have a list of members. I want to print the list with numbers to the left
of their name?
 
J

John W. Vinson

On Wed, 7 Nov 2007 13:20:23 -0800, Lori Mejia <Lori
I have a list of members. I want to print the list with numbers to the left
of their name?

Access tables don't have "row numbers". Do you have a number field in your
table, such as an Autonumber? Or do you want the members just numbered 1
through <whatever> in the report? If so, put a textbox on the report with a
Control Source of

=1

and set its Running Sum property to Over All.

John W. Vinson [MVP]
 
D

Douglas J. Steele

Anytime you want to print, you should be creating a report. Reports let you
format the output how you want it.
 
Top