Forum Discussion
burak
10 years agoFrequent Visitor
Sum of Distinct Count by column
Hello Everyone, I am having trouble calculating sum of Distinct Count. Basically, I would like to calculate Distinct count regarding a different column. Here is the example: Term ...
- 10 years ago
You could create a new column that concatenates Term and ID and then create a measure that does a DISTINCTCOUNT of that column. This measure should react appropriately to slicers and such. So:
Column
TermIDs =CONCATENATE([Term],[ID])
Measure
DistinctTermIDs = DISTINCTCOUNT([TermIDs])
Greg_Deckler
Community Champion
10 years agoYou could create a new column that concatenates Term and ID and then create a measure that does a DISTINCTCOUNT of that column. This measure should react appropriately to slicers and such. So:
Column
TermIDs =CONCATENATE([Term],[ID])
Measure
DistinctTermIDs = DISTINCTCOUNT([TermIDs])
wharding
10 years agoRegular Visitor
So how would you filter out a distict value?
So in the example above how would you say return the distinct values = SPRING15