Skip to main content
Announcements
The way to achieve your own success is the willingness to help somebody else. Go for it!
cancel
Showing results for 
Search instead for 
Did you mean: 
Nikhil14384
Contributor
Contributor

Conditional Colors to two different measures in a Bar chart

Hello,

I have a bar chart with two measures.

Now, I want to color one measure(bar) with one color(Ex.. Blue) and want to color another measure(bar) based on condition. I tried all the coloring options available but none worked.

WhatsApp Image 2022-06-29 at 3.00.37 PM.jpeg

 

As per the above image, I want to color the second bar based on the condition ( when the first bar < second bar, the color of the second bar should be orange). and the first bar color should not be changed.

Labels (3)
1 Reply
tm_burgers
Creator III
Creator III

Color by Expression:

 

if([Dimension1]='Threshold', blue(), 
    if( AGGR(Count( {< [Dimension1]= {'Overdue'} >} OverdueMeasure), Dimension2) > .2,
    rgb(255, 153, 51), green()
    )
)