The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.