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: 
Not applicable

pivot dimension background color


I´m trying to format the color background with this but having trouble

if(Interval = '0-80',rgb(164,216,105))or (Interval = '81-100',rgb(230,224,13)) or (Interval = '101-120',rgb(255,0,0))

please help

1 Solution

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

    Try this.

    if(Interval = '0-80',rgb(164,216,105),

          if(interval = '81-100',rgb(230,224,13),

                    if(Interval = '101-120',rgb(255,0,0)))

Regards,

Kaushik Solanki

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

View solution in original post

2 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

    Try this.

    if(Interval = '0-80',rgb(164,216,105),

          if(interval = '81-100',rgb(230,224,13),

                    if(Interval = '101-120',rgb(255,0,0)))

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Not applicable
Author

Hi Kaushik

works fine - thanx