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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Finding Values with slider or input box

I am trying to supplement a straight table that has Users and total spend along with multiple other fields in it. Is it possible to have a slider or input box (ideally both) that I type or slide to a value say $100, and it will show all the users that have $100 spend instead of changing the actual spend to $100?

Labels (1)
9 Replies
sunny_talwar
MVP
MVP

Probably this:

If(Yourexpression = $(vVar), yourexpression)

where vVar is based on your slider or input box object.

HTH

Best,

Sunny

Not applicable
Author

Embed that if statement in the straight table? and create a vVar for the slider or input box?

sunny_talwar
MVP
MVP

Yes, I am trying to see if I can create a sample for you.

sunny_talwar
MVP
MVP

See if the attached helps.

Best,

Sunny

Not applicable
Author

Thanks Sunny, I think this will work, but I want to show all users over $75, $100, $ 150 by the slider and input, sorry I didn't specify, this might make things more difficult?

sunny_talwar
MVP
MVP

Change the expression to this:

=If(Sum(Value) >= vVar, Sum(Value))

cbaqir
Specialist II
Specialist II

How would this work if you are using multi value in the slider? I need to enter a start and end date.

sunny_talwar
MVP
MVP

‌Should be straight forward if I am thinking about it correctly.

If(Date >= vStartDate and Date <= vEndDate, yourExpression)

cbaqir
Specialist II
Specialist II

Gantt and Straight table by Input Box Date Range

Sunny, Mind if I ask you to weigh in on this?