Hello
What is the simplest way add a row number to report?
Is there any way to do this without using vba?
thanks in advance
Hello
What is the simplest way add a row number to report?
Is there any way to do this without using vba?
thanks in advance
Yes, in the report query, add a hard code field: 1
...select *,1 as Countr from table.
then in the report , set the property of this field to Running Sum.
it will be your row counter.
From Google I found this.
Good luck.