Forum Discussion
dtartaglia
Resolver I
10 years agoCount number of string values in multi value columns?
Hi, I'm sure this is an easy one but can't seem to figure it out. All I want to do is display a tooltip for the total number of users in a selected column. The below image shows the user count fr...
- 10 years ago
You can use following measure to display the total number of users in a selected column.
User Count_2 = CALCULATE ( DISTINCTCOUNT ( SurveyDataTransposed[Name] ), ALLEXCEPT ( SurveyDataTransposed, SurveyDataTransposed[Studio] ) )
Best Regards,
Herbert
v-haibl-msft
Microsoft Employee
10 years ago
You can use following measure to display the total number of users in a selected column.
User Count_2 = CALCULATE ( DISTINCTCOUNT ( SurveyDataTransposed[Name] ), ALLEXCEPT ( SurveyDataTransposed, SurveyDataTransposed[Studio] ) )
Best Regards,
Herbert
- dtartaglia10 years ago
Resolver I
Hi Herbert,
Thanks!
Dan