Variables in Reporting Services - TechRepublic
General discussion
November 14, 2005 at 09:08 AM
gochris01

Variables in Reporting Services

by gochris01 . Updated 19 years, 2 months ago

I am calling the AddTime function successfully in the detail section a table on my MS Reporting Services report. When I try to access this value using the GetMyTime function from the footer section of that same table, it comes back empty. Any ideas?

Thanks, Chris

——————-
Begin Code:
——————-

Public lTimeTot as Long

Public Function AddTime() as Long
lTimeTot = lTimeTot + 86400
AddTime = lTimeTot
End Function

Public Function GetMyTime() as Long
GetMyTime = lTimeTot
End Function

——————-
End Code:
——————-

This discussion is locked

All Comments