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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
steeramp
Partner - Creator II
Partner - Creator II

Different BACKGROUND Color for different rows

  Hallo everybody,

  How can make differents background color for my column "en%" for  each rows ?

Example :

  • for GROUPE 6 , if en% >0  , color Green      ---   if en% <= 0     , color RED
  • for GROUPE 3 , if en% >0  , color RED      ---   if en% <= 0     , color Green
  • for GROUPE 4 , if en% >0  , color RED      ---   if en% <= 0     , color Green

2015-01-07_11-52-16.png

2015-01-07_11-54-382.png

1 Solution

Accepted Solutions
steeramp
Partner - Creator II
Partner - Creator II
Author

Hi everyone,

In this way I have find the solution in the Background Color option

If(rowno(total)=1,If(if en% >0,LightGreen(),LightRed()),

If(rowno(total)=2,If(if en% >0,LightRed(),LightGreen()),

If(rowno(total)=3,If(if en% >0,LightRed(),LightGreen()),

)

)

)

View solution in original post

5 Replies
vikasmahajan

HTH

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
steeramp
Partner - Creator II
Partner - Creator II
Author

Hmmm no...

I have different condition for each Rows...

Not applicable

Hi Steeven.

I think this might work.

in that expression tab, left of en%, click that '+' sign, then click background color, on your right click definition, then write. ohh by the way what is the column that contains your groups(GROUP3,4 and 6), let suppose u called it 'Group', then write

if(Group = 'Group3' & en% > 0,Green(),if(Group = 'Group4' & en% >0,Red(),if(Group = 'Group6' & en%>0,Red(),Green()))).

Hope this helps

jvitantonio
Specialist III
Specialist III

Hi,

this can be done from the Background Color expression.

Go to your expression, click on the + signs, and add your conditions in the Background Color option.

I'm attaching an example.

JV

steeramp
Partner - Creator II
Partner - Creator II
Author

Hi everyone,

In this way I have find the solution in the Background Color option

If(rowno(total)=1,If(if en% >0,LightGreen(),LightRed()),

If(rowno(total)=2,If(if en% >0,LightRed(),LightGreen()),

If(rowno(total)=3,If(if en% >0,LightRed(),LightGreen()),

)

)

)