Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
New-here1
Contributor III
Contributor III

Colour Formatting

 
Labels (4)
2 Replies
Or
MVP
MVP

You can use If(Condition1 AND Condition2 AND Condition3, Yellow()) for this. If multiple colors are necessary, it may be better to use nested if statements instead (e.g. If(Condition1, If(Condition2 AND Condition3,Yellow(),Red()),Green())

msabi
Contributor II
Contributor II

you can use if() expression with RGB() or '#XXXXXX' hex

as example:

if(key=1,RGB(150,75,120),

if(key=2,RGB(100,80,120), RGB(100,10,100)

))