Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
guyvermeiren
Creator
Creator

Bar chart conditional format background color with full accumulation

Hello,

I have a bar chart where there are 3 values by month. See picture. Actual and Plan are values by Month ( no accumulation) and Var has "Full accumulation". I would like to apply a conditional format to Var (Green when >0 an Red when <0).

I tried with "Background color" (=if(Var <0,Red(),Green()) but this always applies to the Monthvalue and not to the acccumulated value.

Is there are solution for this ?

Thanks,

Guy

Capture.JPG

1 Reply
Not applicable

You can maybe try this in your background color expression

if(rangesum(above(Expression,0,Rowno()))>0, Green(),Red())