Forum Discussion
Syndicate_Admin
4 years agoAdministrator
Multiple records in the same column
Good, in the situation shown and for a visualization 'Graph of 100% stacked bars' representing on the X Axis the count of Column 2. Is it possible that record No. 4 can be viewed as the count of ...
- Anonymous4 years ago
Hi Syndicate_Admin ,
If you separate names by "," in column2, you can try this measure to count names in column2.
Count of Name = LEN ( MAX ( 'Table'[Column 2] ) ) - LEN ( SUBSTITUTE ( MAX ( 'Table'[Column 2] ), ",", "" ) ) + 1Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
4 years agoNot applicable
Hi Syndicate_Admin ,
If you separate names by "," in column2, you can try this measure to count names in column2.
Count of Name =
LEN ( MAX ( 'Table'[Column 2] ) )
- LEN ( SUBSTITUTE ( MAX ( 'Table'[Column 2] ), ",", "" ) ) + 1
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.