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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Transforming text in image inside data table

Hello everyone,

I am new on QlikView and i am trying to make a table with large data more interesting.

My table has a field called "Status", with two distinct values: "Green" and "Red".

My idea is to display this information with colors, and not in text, as shown below:

status.JPG

Anyone knows if it is possible to do that on QlikView?

Regards,

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

you can define the representation of your Expression as Traffic Light Gauge and define setings

View solution in original post

7 Replies
sunny_talwar

It is possible to do this. Check this link out: Display images in straight table‌ and this: Images as column data in straight table

Anonymous
Not applicable
Author

On the Expressions tab of your Chart Properties set the expression Display Options to have a Representation of Taffic Light Gunge, and set the Gauge Setting appropriately for your needs.

Anonymous
Not applicable
Author

you can define the representation of your Expression as Traffic Light Gauge and define setings

sunny_talwar

and to load your own images, check this out: Bundle Info Load

Not applicable
Author

Hello,

Thanks you all for the tips.

I have made the Traffic Light Gauge as you suggested, and now i have a new problem:

All values from the field "Status" that are NULL, it shows the green light, as you can see below:

status.JPG

I would not like to display the green light when the value is null.

Someone, please can help me to solve this?

Regards,

sunny_talwar

If you want to not show green or red, you can try this:

If([Status Mes] > 0, YourExpressionForTrafficLightGauge)

Not applicable
Author

You can create custom column in your script as expression given below and then you can use trafficlight min and max.

if(Status='Green',1,if(Status='Red',0,Null())) as StatusFlag