I am very new to Mondrian/OLAP, and I need to modify an existing cube to use a custom aggregate function. I have no idea if this can be done using built-in functionality.
My fact table contains 3 dimensions: quantity sold, amount, and product group(s) The problem comes from the fact that each product can be in multiple groups.
This is how my fact table looks:
----------+-----------+-----------+-----------
DIM_0_ID | DIM_1_QTY | DIM_2_AMT | DIM_3_GRP
----------+-----------+-----------+-----------
1 | 10 | 5$ | A
1 | 10 | 5$ | B
2 | 3 | 10$ | A
2 | 3 | 10$ | B
2 | 3 | 10$ | C
3 | 6 | 2$ | A
3 | 6 | 2$ | B
----------+-----------+-----------+-----------
Now, I need to calculate the SUM of all products sold. Should be 10x5$ + 3x10$ + 6x2$ The aggregate function I need is (e.g.) SUM of FIRST CHILD, or SUM of MIN, or SUM of MAX on primary key DIM_0_ID.
How can I acheive this ? Apologies in advance if my terminology is wrong... again I'm very new to OLAP/Mondrian.
Thanks !
[edit] I thought I could store the set of groups for an item as a comma-separated-values, but then, would need to tell MDX how to match it (substring match) in SQL. Any idea if and how I could do that ?