eason
11-09-1999, 10:19 AM
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
11-09-1999, 11:01 AM
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
12-08-2008, 07:37 AM
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...