Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
i am using google map with qlikview and i am trying to change the color of the bubble by count , for example is the value of the count is more then "80" then make it blue
i was able to do this , but i dont know how change the colors
You can assign the color using the attribute "Background Color" of the first Expression (in your case, X coordinate) - click on the little plus sign "+" next to the expression and type your formula in the expression for "Background Color" - something like this:
=if(count(Client) > 80, blue(), yellow())
You can assign the color using the attribute "Background Color" of the first Expression (in your case, X coordinate) - click on the little plus sign "+" next to the expression and type your formula in the expression for "Background Color" - something like this:
=if(count(Client) > 80, blue(), yellow())
Hi Oleg
Thank you for your help
what i should insert in the "blue()" ?
=if(count(Client) > 80, blue(), yellow())
What do you mean? blue() is a valid color function. Look up "Color Functions" in QlikView help - you'll find all the basic colors, plus functions like RGB(), ARGB() etc...
Hi
its working!!