Forum Discussion
Anonymous
3 years agoNot applicable
Incorrect total displayed
Hello! 🙂 I need your help and would appreciate it. First of all I show you the data model: (not the whole model, just the part we are interested in): The problem is that the total is not...
- Anonymous3 years ago
It works now. I replaced the: SUM(CirculationFact[Count_Checkout]) with [Loans] measure in the SUMX and now it's ok.
Now the correct measure is:
NEW_LOANS = SUMX(SUMMARIZE(BibliographicSubjectDim,BibliographicSubjectDim[Name]), [Loans])Thank you for you help.
HoangHugo
3 years agoSolution Specialist
Hi, total row be calculated base on underlying data, in your case, watn to sum all row of table, try this one
Loans = SUMX(SUMMARIE([Name]), SUM(CirculationFact[Count_Checkout]))
Anonymous
3 years agoNot applicable
It works now. I replaced the: SUM(CirculationFact[Count_Checkout]) with [Loans] measure in the SUMX and now it's ok.
Now the correct measure is:
NEW_LOANS = SUMX(SUMMARIZE(BibliographicSubjectDim,BibliographicSubjectDim[Name]), [Loans])Thank you for you help.