Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Change color value - simple table

How can I change the color of values column 'Marge * Qté' in blue : ex 256.77€ in blue

Thx in advance

1 Solution

Accepted Solutions
rubenmarin

Hi, in the Expression tab you can set an exprssion to set the color:

It can be based on conditions and using RGB() or any other color function, ie:

If([ExpressionName]>0, RGB(0,128,0), Red())

View solution in original post

7 Replies
Anonymous
Not applicable
Author

there are several Options:

- tab visual clues you can define colores depending from values

- tab Expression, click "+" from your Expression , there you can define Colors as well

rubenmarin

Hi, in the Expression tab you can set an exprssion to set the color:

It can be based on conditions and using RGB() or any other color function, ie:

If([ExpressionName]>0, RGB(0,128,0), Red())

Anonymous
Not applicable
Author

for simple table there is only one option

you can achieve by this way:

- define "design grid" (tab Menu)

- Position your table and there your expression
   AND right mouse click on "Custom Format cell"

- select cell

- goto Background Color and enter Color you want

- apply and close

- complet Expression is colored

Not applicable
Author

How can i ? What to put in Definition tab?

thx in advance

Anonymous
Not applicable
Author

you can enter rgb code or a variable which holds rgb code

for instance =rgb(255,0,0) for red

or you use the build in Colors like White(), red() etc.

rgb Colors can be checked if you goto Color Definition, if you select requried Color you can read rgb values

Not applicable
Author

Thank U ... That's what I want

Stanley

Not applicable
Author

Thx U