Forum Discussion
Pikachu-Power
Impactful Individual
5 years agomultiple information in one cell
Hello, i need some idea how to handle multiple information in one cell 🙂 I have the follwing table and want to see the final result: I need a Filter with the group entries and dynam...
- Anonymous5 years ago
Hi Pikachu-Power ,
You could create a table contains the split groups and use it as slicer.
Then create a measure as below and filter the blank rows.
Measure = IF(CONTAINSSTRING(SELECTEDVALUE('Table'[group]),SELECTEDVALUE(slicer[group])),SELECTEDVALUE(slicer[group]),BLANK())Best Regards,
Jay
Anonymous
5 years agoNot applicable
Hi Pikachu-Power ,
You could create a table contains the split groups and use it as slicer.
Then create a measure as below and filter the blank rows.
Measure = IF(CONTAINSSTRING(SELECTEDVALUE('Table'[group]),SELECTEDVALUE(slicer[group])),SELECTEDVALUE(slicer[group]),BLANK())
Best Regards,
Jay
Pikachu-Power
Impactful Individual
5 years agoNice idea! Thank you.