Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Power Bi Data Bar Enhancement

Hi Team,

Can you please help me someone I have scenario Like

For Clustered Column Chart Like below Image Should be above average Bars Red and Below Average Bars Green.
PFA Screen Shot

 

  • Anonymous's avatar
    Anonymous
    5 years ago

    Hi Anonymous 

    Firstly I build a sample same like yours.

    Due to you add value in Legend in column chart, conditional formatting will be disable. 

    Here I will show you two ways to achieve your goal.

    1. Keep your visual, change data color manually in Data Color in Format.

    2. Change your visual and use conditional formatting.

    Build a color measure.

    Color Measure = 
    VAR _Avg = CALCULATE(AVERAGE('Table'[Value]),ALL('Table'))
    RETURN
    IF(SUM('Table'[Value])>=_Avg,"Red","Green")

    Click fx in Data colors in Format and format by Field value based on Color Measure.

    Result:

    Best Regards,

    Rico Zhou

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. 

1 Reply

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Anonymous 

    Firstly I build a sample same like yours.

    Due to you add value in Legend in column chart, conditional formatting will be disable. 

    Here I will show you two ways to achieve your goal.

    1. Keep your visual, change data color manually in Data Color in Format.

    2. Change your visual and use conditional formatting.

    Build a color measure.

    Color Measure = 
    VAR _Avg = CALCULATE(AVERAGE('Table'[Value]),ALL('Table'))
    RETURN
    IF(SUM('Table'[Value])>=_Avg,"Red","Green")

    Click fx in Data colors in Format and format by Field value based on Color Measure.

    Result:

    Best Regards,

    Rico Zhou

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.