Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I want to filter and show data according to the category. which should be filtered in my Table chart
| Product_id | Product Name | Category |
| 1 | a | Mobile |
| 2 | b | Charger |
| 3 | c | Mobile |
| 4 | d | Mobile |
| 5 | e | Charger |
| 6 | f | Headset |
| 7 | g | Charger |
| 8 | h | headset |
| 9 | i | Mobile |
| 10 | j | Charger |
I want to display whose category is Headset & Mobile
Solved! Go to Solution.
Hi @arun3039,
You may try this solution.
1 Create a measure like this
FilterTable = CALCULATE(MAX('Table'[Category]),'Table'[Category] IN {"Headset","Mobile"})
2 Add filters on this visual to show items when the value is not blank
In fact, you could simply use Filters pane to achieve it: just tick the category you need to show but leave other catetories unticked.
Attached the pbix file as reference.
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please let me know. Thanks a lot!
Best Regards,
Community Support Team _ Caiyun
Hi @arun3039,
You may try this solution.
1 Create a measure like this
FilterTable = CALCULATE(MAX('Table'[Category]),'Table'[Category] IN {"Headset","Mobile"})
2 Add filters on this visual to show items when the value is not blank
In fact, you could simply use Filters pane to achieve it: just tick the category you need to show but leave other catetories unticked.
Attached the pbix file as reference.
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please let me know. Thanks a lot!
Best Regards,
Community Support Team _ Caiyun
Thanks Amitchandak, Its displaying count with category, but i want to display filter rows on that table Chart.
@arun3039 , Create a measure and use that with product and product if in visual
calculate(countrows(Table), filter(Table, Table[Category] in{"Headset","Mobile"}))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 11 | |
| 9 | |
| 9 | |
| 8 |