Hi! experts!
I just want to use the average in our measure group.
Unfortunately, there wasn't average aggreation, except averageOfChildren.
How can I implement the average aggreation?
thanks in advance.
Hi from Brazil,
"averageOfChildren" is same "Average" agregation function.
Note: It run just over SQL Server Enterprise or developer version. Not over Standard Version
Regards!
|||AverageOfChildren will only average over the time dimension - so a typical approach to average over fact rows is:
Create a measure with "sum" aggregation on the fact table field to be averaged
Create a measure with "count" aggregation and row binding (created by default for a new measure group)
Create a calculated measure like: "average" = "sum" / "count"
No comments:
Post a Comment