-
1
- #1
shawnmicha
Programmer
Add code to your report - if you select the report, right-click, select "Properties", and select the code tab, you can type the following in:
Shared curCounter As Integer = 0
Function incCounter() As Integer
curCounter = curCounter + 1
Return curCounter
End Function
Then, in your report, in a field expression, type =Code.incCounter()
Thought this may be helpful since it took me a while to piece it together from a number of posts to various forums.
Shared curCounter As Integer = 0
Function incCounter() As Integer
curCounter = curCounter + 1
Return curCounter
End Function
Then, in your report, in a field expression, type =Code.incCounter()
Thought this may be helpful since it took me a while to piece it together from a number of posts to various forums.