Row number in queries

sadiq92

Member
Local time
Today, 21:45
Joined
Jun 4, 2020
Messages
30
If I have query that give me specifc date from table . How I put row number for that data.

for example , if it give me data of 5 rows , I want to add column for the rows ( from 1 to 5 ):
1 —— ——
2. —— ——
3. —— ——
4. —— ——
5. —— ——
 
Check out this article from the Boards.
 
A very common topic.

Build a report and use textbox RunningSum property to dynamically generate row number.
 
Set textbox ControlSource to =1 and RunningSum to OverAll.

Google for more details.
 

Users who are viewing this thread

Back
Top Bottom