Forum Discussion
Get count values for comma separated
Hi FreemanZ ,
This will not work. I need count for every value present in Incident Type
Ex: Near miss is present for all three tenant ID, so count of near miss should be 3.
Aha, then you need to split [Incident Type] column and duplicate the rest columns first in Power Query. For example, a row with 3 incident types, there will be 3 rows.
- Anonymous3 years agoNot applicable
I do not want to go with that approach since I will have 40 more comma-separated columns with different values.
So I need a calculated measure.
Thank You!amitchandak Greg_Deckler Jihwan_Kim Please help
- Greg_Deckler3 years ago
Community Champion
Anonymous Assuming you have an Incidents type table somewhere you could do this:
Measure = VAR __Type = MAX('Types'[Type]) VAR __Table = ADDCOLUMNS( 'Table', "__Found",SEARCH(__Type,[Incident Type],,-1) ) VAR __Result = COUNTROWS(FILTER(__Table, [__Found] > -1)) RETURN __Result- Anonymous3 years agoNot applicable
Hi Greg_Deckler
Thanks for the reply. I will not have an Incident Type table. My issue is there are more than 40 such columns, so having 40 tables will lower the performance.
Any different approach?Note : using MongoDb as Datasource which is very very slow.