Autonumber on a report? (1 Viewer)

eason

Registered User.
Local time
Today, 07:21
Joined
Nov 3, 1999
Messages
31
I have a report that sorts stores by thier sales performance. Is report is ran daily and the rankings change from day to day. What I need to do is add in a textbox to the report that will autonumber the stores and they are sorted. The number of store will change monthly. Any ideas?
 

TonTon

New member
Local time
Today, 13:21
Joined
Nov 2, 1999
Messages
9
Ensure the records are ordered as you wish.

Create a Text Box in the header or footer of the item you wish to rank, eg in the [StoreID] header.

Set the ControlSource of the Text Box to:
=Count([StoreID])

This will only count one store per header. However, if you set the RunningSum property of the Text Box to "Over All", this will act as a counter, incrementing by one for each new header.

Hope this helps
Cheers
Tony
 

Zimbo

New member
Local time
Today, 05:21
Joined
Dec 8, 2008
Messages
1
I know this is a very old post but thought this might still be useful for someone. To generate a new autonumbering field within a report:

1 - add a 'text box' and type '=1'

2 - Go to properties and under 'running sum' select 'over all'

That worked fine for me at least...
 

Users who are viewing this thread

Top Bottom