Forum Discussion
How to filter for multiple items
- Anonymous2 years ago
Hi Anonymous ,
I created some data:
Would you consider grouping each student, tagging each student and placing them in the corresponding group, and using this group as a slicer to display the set of students by selecting the corresponding tag.
Here are the steps you can follow:
1. We can create a calculated column, customize the rules of the group.
Group = SWITCH( TRUE(), 'Table'[Value]>=1&&'Table'[Value]<=5,"Test1", 'Table'[Value]>=6&&'Table'[Value]<=8,"Test2", 'Table'[Value]>=9&&'Table'[Value]<=10,"Test3","Test4")2. Result:
If it doesn't meet your desired outcome, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi Anonymous ,
I created some data:
Would you consider grouping each student, tagging each student and placing them in the corresponding group, and using this group as a slicer to display the set of students by selecting the corresponding tag.
Here are the steps you can follow:
1. We can create a calculated column, customize the rules of the group.
Group =
SWITCH(
TRUE(),
'Table'[Value]>=1&&'Table'[Value]<=5,"Test1",
'Table'[Value]>=6&&'Table'[Value]<=8,"Test2",
'Table'[Value]>=9&&'Table'[Value]<=10,"Test3","Test4")
2. Result:
If it doesn't meet your desired outcome, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly