Forum Discussion
AndresEsteban
4 years agoHelper I
Distinct count filtering by other column
Hello community I would need your help. I have a table with the following records: -Device: are different types of devices and sensors. -Type of service: different types of services. Each devic...
- 4 years ago
AndresEsteban my bad please create a measure as below:-
Measure = SUMX ( SUMMARIZE ( 'Table', 'Table'[Type of service], "sum", DISTINCTCOUNT ( 'Table'[Location] ) ), [sum] )
Samarth_18
4 years agoCommunity Champion
AndresEsteban my bad please create a measure as below:-
Measure =
SUMX (
SUMMARIZE (
'Table',
'Table'[Type of service],
"sum", DISTINCTCOUNT ( 'Table'[Location] )
),
[sum]
)
AndresEsteban
4 years agoHelper I
Thank so much, it's work perfetly!!