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 have a clustered bar chart and I am trying to remove the data points that contain a specific legend category.
NOTE - this is not simply filtering out the legend category.
Here is the table view for the chart. I am trying to remove the rows that contain a value in the "Foundation" column. For these rows, this would result in just the second and last row remaining in the table/chart.
Solved! Go to Solution.
Hi , @jb2019
Try to create another measure as below:
Visaul control =
COUNTROWS (
FILTER (
ALL ( 'Table' ),
'Table'[Product & Brand] = MAX ( 'Table'[Product & Brand] )
&& [Certification Tier] = "Foundation"
)
)
Then drag it to the visual filter pane to filter out rows that do not contain any value in the "Foundation" column.
Please check my sample file for more details.
Best Regards,
Community Support Team _ Eason
Hi , @jb2019
Try to create another measure as below:
Visaul control =
COUNTROWS (
FILTER (
ALL ( 'Table' ),
'Table'[Product & Brand] = MAX ( 'Table'[Product & Brand] )
&& [Certification Tier] = "Foundation"
)
)
Then drag it to the visual filter pane to filter out rows that do not contain any value in the "Foundation" column.
Please check my sample file for more details.
Best Regards,
Community Support Team _ Eason
@jb2019you can remove it like this
Foundation is one of three values under "Certification Tier" which is used for the legend. How can I pull out Foundation so that I can filter it?
@jb2019you need to write a measure that takes out the blank Foundation rows
e.g
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.