Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
helen_pip
Creator III
Creator III

Visual Cues ignoring ARGB

Dear Qlikview user

I am using visual cues to show whether a value has exceeded a target or not with the colors red or green

Although the visual cue is showing the correct colors, it appears to be ignoring the ARGB function I have put in as a calculated color

ARGB(80,117,155,115) = Green

ARGB(80,255,112,200) = Red

Does anyone know if visual cues does not allow for ARGB?

Unfortunately, I cannot use Background color under expressions, due to the complexity of my table and data structure

Kind Regards

Helen

2 Replies
rubenmarin

Hi Helen, I tried and argb doesn't work for me either.

In case you don't know, you can use label name to reference the expression, so the background color can be:

If([ExpressionLabel]>0, ARGB(80,117,155,115) , ARGB(80,255,112,200))

If the expression label is calculated it can also be:

If([$(=ExpressionLabel)]>0, ARGB(80,117,155,115) , ARGB(80,255,112,200))


You can add a condition to keep '0' in black.


Hope this helps!

helen_pip
Creator III
Creator III
Author

Hello Ruben

Thanks for testing whether ARGB works on visual cues...I thought I was doing something wrong, but could not see it

Thanks for the tip about the expression label

As an interim measure I have just chosen a green colour which gives the appearance of our ARGB variable v_colour_pass_target

Thanks

Helen