Number Rows on a report?

D

Dave

It would be anice addition if I could add numbers (a count) in front of each
row on my filtered report.

Any easy way to do this.

I was thinking an unbound text box with something in the control source - I
just don't know the something :)

Any help here will be appreciated.

Thanks in advance
 
F

fredg

It would be anice addition if I could add numbers (a count) in front of each
row on my filtered report.

Any easy way to do this.

I was thinking an unbound text box with something in the control source - I
just don't know the something :)

Any help here will be appreciated.

Thanks in advance

Set the control source to
=1
Set the Running Sum property to Over All
 
D

Douglas J. Steele

Add a text box, and set its ControlSource to =1 (including the equal sign)

Then, find the text box's RunningSum property and set it to either Over All
or Over Group, depending on what numbering you want.

(Note that this only works for Reports, despite the fact that you've posted
to the Forms group)
 
D

Dave

Thats for the pointers.
Worked as advertised.

And my appoligies about posting in the wrong group

dave
 
Top