Forum Discussion
Aggregation logic dax
Hello AlanP514 ,
Please try creating this measure. It gives the expected output.
Kind regards,
Rohit
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
Hai rohit_singh,I have a model number but that is a fully text data type so I cannot sum
This is the measure and this column consist of text values so i am taking distinct count
can you change your measure based on this
- rohit_singh4 years agoSolution Sage
Hi AlanP514 ,
Please try this :
% Share Range =var _total =
SUMX(
ALLEXCEPT(Markets, Markets[Market]),
[# Model Number]
)var _target =
DIVIDE(SUMX(Markets,[# Model Number]), _total, 0)Return_targetHere [# Model Number] is your measure.
Kind regards,
Rohit
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂- AlanP5144 years agoPost Patron
- rohit_singh4 years agoSolution Sage