Forum Discussion
Anonymous
3 years agoNot applicable
Summarize values from multiple FACT tables
Hi together, I have the following data-model with a DIM-Table and different FACT-Tables. I would like to have one stacked column chart with the value from DIMValueType on the X-axis and the di...
- 3 years ago
Hi,
Yes, you can make one measure for each fact table.
measure1= sum(table[column])
measure2 = sum(table[column])
measure3 = sum(table[column])
Total measure = [measure1] + [measure2] + [measure3]
Br
Marius
mariussve1
3 years agoSolution Sage
Hi,
Yes, you can make one measure for each fact table.
measure1= sum(table[column])
measure2 = sum(table[column])
measure3 = sum(table[column])
Total measure = [measure1] + [measure2] + [measure3]
Br
Marius
- Anonymous3 years agoNot applicable
Hi mariussve1 ,
Wow, I didn't think that it is that simple ๐
Thank you very much!
Best regards,
Andreas