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

True or False if value exists

Hey,

Iam importing a excel sheet. I make a gauge chart (showing green or red light) if the value is there.

As an example i got a field named Object.

I want the light to be red if the object field consists of value "SSSMMM" and green if the valie "SSSMMM" is not there.

Tried the expression if(Object='SSSMMM', 'True', 'False'")

Any ideas here?

Thanks

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Try if(Object='SSSMMM',1, 0)


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

Try if(Object='SSSMMM',1, 0)


talk is cheap, supply exceeds demand
amit_saini
Master III
Master III

Erik,

This should work:

If(Object='SSSMMM','Yes','No')

If not share your application.

Thanks,
AS