Forum Discussion

Roinka's avatar
Roinka
Helper I
7 years ago
Solved

Conditional bar color

Hi,

I have a bar chart which displays a list of categories and number of points in each category.

One of the categories is a control category.

I would like the chart to show all categories above the control category (=have more points comparing to control category) in one color (say blue), the control group in another color (say green) and everything below it in a different color (say red). 

E.g.:

category 1 - 100 pt (bar is in blue)

category 2 - 50 pt (bar is in blue)

Control category - 30 pt  (bar is in green)

Category 4 - 20 pt  (bar is in red)

Category 5 - 10 pt. (bar is in red)

Thank you.

  • Hi Roinka

     

    You will have to create some sort of measure that determines whether the sum of Points is greater than or less than the Control Category, and use that as the basis for conditional formatting.

     

    Here is an example

     

    In this example I created these measures:

    Points Sum = 
    SUM ( Points[Points] )
    
    Points Sum Control Category = 
    CALCULATE ( 
        [Points Sum],
        Points[Category] = "Control Category"
    )
    
    Bar Colour = 
        IF (
            SELECTEDVALUE ( Points[Category] ) = "Control Category",
            "green",
            VAR PointsSumRelativeToControl = 
                SIGN ( [Points Sum] - [Points Sum Control Category] )
            RETURN
                SWITCH (
                    PointsSumRelativeToControl,
                    1,"blue",
                    0,"grey", // Grey for categories that happen to have points equal to control
                    -1,"red"
                )
        )

    In this example, the Bar Colour measure itself returns the name of the colour, so is used under Data colors => Conditional formatting => Field Value.

     

    You should be able to adapt this to your needs.

     

    Regards,

    Owen

2 Replies

  • Hi Roinka

     

    You will have to create some sort of measure that determines whether the sum of Points is greater than or less than the Control Category, and use that as the basis for conditional formatting.

     

    Here is an example

     

    In this example I created these measures:

    Points Sum = 
    SUM ( Points[Points] )
    
    Points Sum Control Category = 
    CALCULATE ( 
        [Points Sum],
        Points[Category] = "Control Category"
    )
    
    Bar Colour = 
        IF (
            SELECTEDVALUE ( Points[Category] ) = "Control Category",
            "green",
            VAR PointsSumRelativeToControl = 
                SIGN ( [Points Sum] - [Points Sum Control Category] )
            RETURN
                SWITCH (
                    PointsSumRelativeToControl,
                    1,"blue",
                    0,"grey", // Grey for categories that happen to have points equal to control
                    -1,"red"
                )
        )

    In this example, the Bar Colour measure itself returns the name of the colour, so is used under Data colors => Conditional formatting => Field Value.

     

    You should be able to adapt this to your needs.

     

    Regards,

    Owen