Forum Discussion
NoordenNL076
4 years agoRegular Visitor
Need help with measure total
Hello, I need help with the following problem: I'm calulating a MAX. number of products. The measure is calculating the total row of the table, instead of per row. The final sum should be aro...
- 4 years ago
NoordenNL076 , Based on the not summarized column in the
you need to have a measure like
sumx(summarize(Fact, Dim[Column1], "_1",[New Max QTY]), [_1])
amitchandak
Super User
4 years agoNoordenNL076 , Based on the not summarized column in the
you need to have a measure like
sumx(summarize(Fact, Dim[Column1], "_1",[New Max QTY]), [_1])
NoordenNL076
4 years agoRegular Visitor
It worked. You're a hero!