Forum Discussion
Anonymous
6 years agoNot applicable
Total of Distinct Values
Hello all! I'm new on Power BI and i have the follow issue: I have the table below: ID Month Type Count 1 January X 1 2 January X 1 3 January X 1 4 January X ...
- 6 years ago
Anonymous , Try like
sumx(summarize(Table,Table[month],table[Type],"_1",DISTINCTCOUNT('Table'[ID])),[_1])
ryan_mayu
Super User
6 years agoAnonymous
Please try this
Measure 3 = CALCULATE(DISTINCTCOUNT(Sheet8[ID]),ALLEXCEPT(Sheet8,Sheet8[ID],Sheet8[Month],Sheet8[Type]))