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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
rdsuperlike
Creator
Creator

Input box

In a input box if a value is 0 , I dont want to display that input box,

But if there is value > 0 I want to display that input box.

is there anything i can put in layout--conditional?

I have attached sample. If any variable value is 0 I dont want to display that variable in the input box.

Ny help is appreciated.

1 Reply
Anonymous
Not applicable

The below will allow you to make the input box disappear if there is no figure or a 0 in the variable you have specified but it will only work on the whole input box, to my knowledge there is no way to make a individual line in an input box disappear.

for if there is no figure

=if(len(vMangoPost)>0,1,0)

for above 0

=if(vMangoPost>0,1,0)