Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Nika3
Contributor II
Contributor II

Mark values

Hello!
I have the following question: I have a number of ideas with different statuses. And for each status column "Days in state". But I need to restrict the days in state column, more precisely I need to mark the ideas that are longer than 40 days red, for example, then others yellow and the newest green. Or just mark them in red. How do you do that? Maybe with a formula for text color?
Thanks in advance!

Labels (1)
2 Solutions

Accepted Solutions
MatheusC
Specialist
Specialist

@Nika3 

Leaving an example of your data, what the field values ​​are like and even an example of what you want to achieve can be easier and faster to help you.
But basically, yes, you can put the color in the text color expression

Ex:
if(
Days
>40,red(),green())

or as you taught three colors assuming that there are other value ranges for each color, I leave an example, it looks like this:

if(
Days
>40,red(),
if(
Days
>=20
And 
Days
<40,yellow(),green()))

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!

View solution in original post

MatheusC
Specialist
Specialist

@Nika3 
Close the thread with the accepted solution

Thanks

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!

View solution in original post

4 Replies
MatheusC
Specialist
Specialist

@Nika3 

Leaving an example of your data, what the field values ​​are like and even an example of what you want to achieve can be easier and faster to help you.
But basically, yes, you can put the color in the text color expression

Ex:
if(
Days
>40,red(),green())

or as you taught three colors assuming that there are other value ranges for each color, I leave an example, it looks like this:

if(
Days
>40,red(),
if(
Days
>=20
And 
Days
<40,yellow(),green()))

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!
MatheusC
Specialist
Specialist

@Nika3 
Close the thread with the accepted solution

Thanks

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!
Frank_S
Support
Support

@MatheusC  Please consider writing a member article with your solution here:
https://community.qlik.com/t5/Member-Articles/tkb-p/qlik-communityarticles

kind regards...

Please remember hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
MatheusC
Specialist
Specialist

@Frank_S 

I will do that, thanks

Att,

Matheus

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!