Forum Discussion
Raul
8 years agoPost Patron
Total value for all rows
Hello, I have this matrix visualization with 2 measures: AREA Concepte FACT Cost Fact TempCOST TempFACT Area1 1.437,25 2.880,19 1.437,25 2.880,19 ...
Floriankx
8 years agoSolution Sage
Hello,
can you show us the structure of your raw data?
Your Measures should work perfectly.
I created this RawTable:
| Area | Concepte FACT | Cost | Fact |
| Area1 | AM | 25,00 | |
| Area1 | EC | 20,00 | |
| Area1 | JS | 1.160,00 | |
| Area1 | MP | 35,00 | |
| Area1 | MR | 137,00 | |
| Area1 | RC | 60,00 | |
| Area1 | LA01 | 2.778,19 | |
| Area1 | LA02 | 102,00 | |
| Area2 | AM | 375 | 0 |
| Area2 | JP | 60 | 0 |
I created the following Measures:
Cost_:=SUM(Table1[Cost])
TemCOST:=CALCULATE([Cost_];ALL(Table1[Concepte FACT]))
Fact_:=SUM(Table1[Fact])
TempFACT:=CALCULATE([Fact_];ALL(Table1[Concepte FACT]))
And this is my result: