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:
——————-