Showing posts with label nunmeration. Show all posts
Showing posts with label nunmeration. Show all posts

Thursday, March 8, 2012

Add nunmeration to table

Hello.
Whats the easiest way to add a column with a numeration to my table?
I want the users to have an easier life finding on which row they are
talking.
I preffer of course doing it in reporting service and not adding a
column in my dataset.
Thanks.Add the following to a grid cell or control in the detail section of your
report:
=RunningValue(1,Sum,Nothing)
This will count each row. If you only want to count each row across a
specific group, then change the Nothing to "MyGroup"
Michael
"nicknack" wrote:
> Hello.
> Whats the easiest way to add a column with a numeration to my table?
> I want the users to have an easier life finding on which row they are
> talking.
> I preffer of course doing it in reporting service and not adding a
> column in my dataset.
> Thanks.
>