Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
harleen_singh
Creator III
Creator III

Search 1 out of multiple values

hii,

I have a data like this after making a selection.

isflag(numeric)

0

1

now what i want is to search for 1. If any of the value has 1 than i want to display textbox otherwise not

I am trying =f(WildMatch(isflag,1),1,0) but it doesn't works

any ideas??

thanks

Harleen

1 Solution

Accepted Solutions
lorenzoconforti
Specialist II
Specialist II

If(sum(isflag) >0, 1, 0)

View solution in original post

5 Replies
arvind_patil
Partner - Specialist III
Partner - Specialist III

hi Harleen,

Currently there is no show/hide conditions for objects in Qlik Sense.

For Referance:Show/Hide in Qlik Sense


Thanks,

Arvind Patil

MindaugasBacius
Partner - Specialist III
Partner - Specialist III

Use Only():

If(Only(isflag) = 1, 1, 0)

harleen_singh
Creator III
Creator III
Author

hii I am working on Qlikview 12 not in Qliksense

harleen_singh
Creator III
Creator III
Author

Thanks Mindaugas

But it didn't worked

lorenzoconforti
Specialist II
Specialist II

If(sum(isflag) >0, 1, 0)