Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

want to different colour in the chart ?

Thanks

Jos

10 Replies
qlikmsg4u
Specialist
Specialist

you can set colors here11.PNG

Not applicable
Author

i want to script logic by using the if condition but i don't write A to Z state names in the script like Provider state = :AK', 'Al' Like this

Not applicable
Author

and i don't want to use the colour tab Persistent colors check box also

qlikviewwizard
Master II
Master II

Not applicable
Author

Hi,

go to the color tab-> and check on or check Multi coloreduntitled4.bmp

Not applicable
Author

If(Sum({<[Provider State]={'AK','AL','AR','AZ'}>}, Red(),

    If(Sum({<[Provider State]={'CA','CO','CT'}>},Blue(), Green())))AVERAGE TOTAL PAYMENT * TOTAL DISCHARGES)

I Write the Script like that but it show error

Kushal_Chawda

try

If(match([Provider State],'AK','AL','AR','AZ'), Red(),

    If(match[Provider State],'CA','CO','CT'),Blue(), Green()))

Anonymous
Not applicable
Author

hi josna,

expression tab:  Sum([Average Total Payments]* [Total Discharges])

under expression -> background colour ->

give

If([Provider State]={'AK','AL','AR','AZ'}, Red(),

    If([Provider State]={'CA','CO','CT'},Blue(), Green())) 

or

If(match([Provider State],'AK','AL','AR','AZ'), Red(),

    If(match[Provider State],'CA','CO','CT'),Blue(), Green()))

Regards

Neetha