I am trying to find out the median of a value in SSRS
. I keep getting #Error.
I place GetMedian()
everywhere in my report. Header, Footer, Footer of the table with no luck
I am using the code from this post
to get the median but I think the issue is with when I try and get the values.
When I am trying to add the values I am using the following :
=Code.AddValue(DateDiff(dateinterval.Minute,
Fields!LAST_APPOINTMENT_DATE.Value,
Fields!TIME_PRINTED_FAXED.Value)
)/60
I'm not sure if this will calculate properly as well as adding the value? Which could be my issue? Please let me know.