Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
adbm
Helper I
Helper I

Filtering error bar in clustered column chart

Hi,

 

I'm trying to show the min and max price range of different products in my dataset. Im using a clustered column chart with error bars to do that. My visual looks like this. I have different products on the x-axis so each bar is a product. I would like to show only those products where this difference is higher than 5%. Is it possible to apply a filter on the error bars? I know i can add a calculated column and then filter the data but wanted to know if we can directly filter on the visul somehow.

 

Thank you,

 

adbm_0-1726720890285.png

 

1 ACCEPTED SOLUTION
suparnababu8
Super User
Super User

Hi @adbm 

It seems like you’re working on a detailed data visualization! Unfortunately, Power BI, don’t allow direct filtering based on error bars.

What ever the approch your are thinking that is correct. Create a calculated columns and apply filters on that visual by using visual level filters. 

=IF((MAX_PRICE - MIN_PRICE) / MIN_PRICE > 0.05, "Show", "Hide")

 

Hope this helps you.

View solution in original post

2 REPLIES 2
suparnababu8
Super User
Super User

Hi @adbm 

It seems like you’re working on a detailed data visualization! Unfortunately, Power BI, don’t allow direct filtering based on error bars.

What ever the approch your are thinking that is correct. Create a calculated columns and apply filters on that visual by using visual level filters. 

=IF((MAX_PRICE - MIN_PRICE) / MIN_PRICE > 0.05, "Show", "Hide")

 

Hope this helps you.

Ahh ok. Thank you for confirming

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors