Forum Discussion
Count repeated
- 7 years ago
Hi Anonymous,
When you make a measure the calculations for total are make based on context so when you are in the totals you are calculating the distinct count of the full data set for january so if NO CONTAINER has only 3 values the total will return 3 you need to make this measure:
Total Containers = IF ( HASONEFILTER ( Table[Cliente] ); DISTINCTCOUNT ( Table[NO CONTAINER] ); SUMX ( ALL ( Table[Cliente] ); DISTINCTCOUNT ( Table[NO CONTAINER] ) ) )Regards,
MFelix
You can add the NO CONTAINER columb to your visuals and select the distinct count summarization or create the following measure
Total containers = DISTINCTCOUNT ( Table[NO CONTAINER] )
Regards
MFelix
- Anonymous7 years agoNot applicable
Thanks MFelix, Excellent !!
I have a question: do you know why the totals are not adding up?
Thank you for your attention and collaboration
- MFelix7 years ago
Super User
Hi Anonymous,
When you make a measure the calculations for total are make based on context so when you are in the totals you are calculating the distinct count of the full data set for january so if NO CONTAINER has only 3 values the total will return 3 you need to make this measure:
Total Containers = IF ( HASONEFILTER ( Table[Cliente] ); DISTINCTCOUNT ( Table[NO CONTAINER] ); SUMX ( ALL ( Table[Cliente] ); DISTINCTCOUNT ( Table[NO CONTAINER] ) ) )Regards,
MFelix
- Anonymous7 years agoNot applicable
Excellent MFelix. You do not know how much you have helped me. Very grateful, very kind