Reputation: 3096
According to this it looks like you can use an aggregate function in a calculated field, but if I try and use the median command, I get an error
"the value expression for the field =Median( ...what I wrote below..) contains an error: BC30451 Name 'Median' is not declared.
I have tried
=Median(Fields!name_of_field_I_want_median_from.Value,"dsTheDatasetFieldIsIn")
and
=Median(Fields!name_of_field_I_want_median_from.Value)
neither work
N.B. Dataset is derived from MDX
Upvotes: 0
Views: 2900
Reputation: 1
Unfortunately Median is not an SSRS function , or it does not work inside an aggregate on an SSRS dataset.
My simple workaround if you are stuck with SSRS.
Best of Luck.
Upvotes: 0