Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Is there a custom visual / R script combo that allows for a configurable baseline e.g. 0 in a bar chart (horoizontal) and then show deviation either side of that point? All other axis hidden?
Hi @Anonymous -
Do you mean something like this?
As long as you create the measure you want to display as a value that will be either >0 or <0, this is a standard built-in bar chart. You should be able to configure the axes to your liking.
Hope this helps
David
That is exactly it kind Sir.
What was the measure used?
In my case it was the difference between this quarter's response percentage and last quarter's
Response % Q over Q = IF ( NOT ( ISBLANK ( [Response %] ) ), [Response %] - CALCULATE ( [Response %], PREVIOUSQUARTER ( DateTab[Date] ) ) )
But it can be anything that is "normalized" to 0.