I have a project with this custom code:
Public Function GetStdDev(ByVal Sum1 as Integer, ByVal Sum2 as Integer, ByVal Sum3 as Integer, ByVal Sum4 as Integer, ByVal Sum5 as Integer, ByVal WAvg as double) as Double Dim aleph = 5/60 Dim w1 = (Sum1 - WAvg)^2 Dim w2 = 2 * ((Sum2 - WAvg)^2) Dim w3 = 3 * ((Sum3 - WAvg)^2) Dim w4 = 4 * ((Sum4 - WAvg)^2) Dim w5 = 5 * ((Sum5 - WAvg)^2) Dim alpha = (w1 + w2 + w3 + w4 + w5) / 5 Dim beta = sqrt(alpha * aleph) Return beta End Function
The report can be viewed just fine, but when I deploy it, I get this error:
There is an error on line 0 of custom code: [BC30203] Identifier expected.
I have no idea what the SSRS problem is. Can anyone enlighten me?
Thanks!
source share