Forum Discussion
adbm
1 year agoHelper 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 p...
- 1 year ago
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.
suparnababu8
1 year agoSuper 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.
- adbm1 year agoHelper I
Ahh ok. Thank you for confirming