Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Expression for different colours in Bubble chart

Hi All I am trying to write an expression for colours in a Bubble Chart.  The expression works for one colour but how do I add an else if to add the other colours.

 

if

(count ([Asset ID]=0),LightBlue())
elseif(count (
[Serial #]

>=5),Lightred())

1 Solution

Accepted Solutions
Not applicable
Author

  

if (count ([Serial #])=0, white(), if (count ([Serial #])<=100, red(), if (count ([Serial #])>101, Blue())))

Sorted

View solution in original post

2 Replies
Not applicable
Author

Sorry expression is

 

if

(count ([Asset ID]=0),LightBlue())
elseif(count (
[Asset ID]

>=5),Lightred())

Not applicable
Author

  

if (count ([Serial #])=0, white(), if (count ([Serial #])<=100, red(), if (count ([Serial #])>101, Blue())))

Sorted