Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago

Dynamic format for measure on column/bar chart

I've been trying to set dynamic format for measure on bar/column chart, but when data labels' display units is set to "none", Power BI ignores my dynamic format UNLESS I set decimal places to > 0 – then it works. However, I don't want those decimal places. Weird thing is that in "Show as a table" view it works all the time.


Also, here is the code for measure format:

VAR __AbsVal = ABS(SELECTEDMEASURE())
RETURN
SWITCH(
    TRUE(),
    __AbsVal < 1000, "#,0",
    __AbsVal < 1000000, "#,0,.K",
    __AbsVal < 1000000000, "#,0,,.M",
    "#,0,,,.B"
    )

4 Replies