Add Serial Number column to a report

  • Thread starter Thread starter Amer
  • Start date Start date
A

Amer

I have a report showing names and file numbers of employees. I need to add an
"SN" column showing the serial number of each row automatically.
 
when you say "row", i assume you mean record. you're not giving much
information. where is the serial number data stored, what have you tried to
do to get the data to show on the report, and what problem(s) are you
encountering?

hth
 
Do you just want to number the rows, starting at 1? If so add a text box
control to the detail section, set its ControlSource property to =1 and its
RunningSum property to 'Over All'. If the report is grouped, and you want
each group's rows to restart at 1 set the RunningSum property to 'Over Group'.

Ken Sheridan
Stafford, England
 
Thnak you very much. That solved the question.

Ken Sheridan said:
Do you just want to number the rows, starting at 1? If so add a text box
control to the detail section, set its ControlSource property to =1 and its
RunningSum property to 'Over All'. If the report is grouped, and you want
each group's rows to restart at 1 set the RunningSum property to 'Over Group'.

Ken Sheridan
Stafford, England
 
Yes, I mean record.

Actually, I don't want to store the number data. It's only to count the
records in the report. But rather than getting a total in the footer of each
group, I want a count number or, say, a serial number to appeat next to each
record.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top