Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am looking for a solution where I want to show Custom calculations as Bar labels. Current ones show the default measure.
I wanted to know if we can show a custom calculation on barchart as a lable.
ex:
Default measure - Sum(Sales)
Bar labels - Variance between Sum(Sales) and Sum(Budget)
Note: this I am looking for the labels, not the tooltip on hover.
Thanks in advance. 🙂
Use a Dual() Expression
=Dual( Num(Sum(Sales) - Sum(Budget),'$#,###') , Sum(Sales) )
Choose Number Format = Measure Expression
Use a Dual() Expression
=Dual( Num(Sum(Sales) - Sum(Budget),'$#,###') , Sum(Sales) )
Choose Number Format = Measure Expression
Thanks a lot for your swift revert