Forum Discussion
LuisMLRossa
4 years agoFrequent Visitor
Matrix Visual :: "Ghost" numbers not adding up
Hi All, Kindly request your help about this issue. In short: Some numbers in a matrix visual are invisible to totals, sub-totals, etc. In detail: I have a matrix visual and in the rows ...
- 4 years ago
LuisMLRossa , Try a measure like
Sumx(summarize(Table, Table[Level1], Table[Level2], "_1",Result),[_1])
amitchandak
4 years agoSuper User
LuisMLRossa , Try a measure like
Sumx(summarize(Table, Table[Level1], Table[Level2], "_1",Result),[_1])
LuisMLRossa
4 years agoFrequent Visitor
Hi amitchandak,
Good morning to you.
I tried what you suggested and .... now I have the results I needed.
Thank you.
More Detail:
The dax formula I made was:
NewAmount3 = sumx(SUMMARIZE(Sales,Sales[Level1],Sales[Level2],Sales[Amount]),[NewAmount])
But I tried with another mesaure and it worked:
NewAmount2 = sumx(values(Sales[Level2]),[NewAmount])
I think the base concept is the same.