Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Community
is there an command, how I can put a certain word in a color?
Example
I have a function
I want to create a table chart
I use Product as Dimension
My expression is
if(Price>=100000, 'Dont buy', 'Buy')
I want QV to show in a table chart in a red color 'Dont buy' and 'Buy' in a green color
I know there s the color command rgb()
Is it possible to combine it?
Use a background expression for this expression
If(Price >= 100000, LightRed(), LightGreen())
Use a background expression for this expression
If(Price >= 100000, LightRed(), LightGreen())