Wednesday, March 28, 2012

numerate group

I would want to number the groups of reportviewer

es.

1) Articles

2) categories

-

etc you can help me

Have a global count variable in your report code and write a function to increment that variable and return the same variable. Call the function from your textbox expression. A sample looks like this:

Public GroupNumber As Integer = 0

Public Function IncrementCount() As String

GroupNumber = GroupNumber + 1

IncrementCount = CStr(GroupNumber)

End Function

And in any of your textbox in your grroup header, use an expression something like this:

=Code.IncrementCount()

Shyam

|||Thanks for help|||Can you please mark the post as answer?

No comments:

Post a Comment