AVG in calculated member function -
10-19-2006
, 07:03 AM
Hi ,
I'm new to OLAP cube design and I have a very basic question.
I need to create a cube with a calculated member for finding avg()
The logic for gettgin avg is same as shown in the below sql
SELECT
colA,
colB,colC,AVG(colD),
FROM table1
GROUP BY
colA,
colB,
colC |