Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
andy-w
Contributor II
Contributor II

What object to put on a sheet for the user to change what is returned

The title may not be super clear, so let me explain.

I have some data that returns a score. I have set it up to show all scores below 80. How do I make that 80 value into a variable that a user can change when using the sheet?

For example, I have:

if(value<80,ReturnField,null())

Everything null is removed from the table. I want something like:

if(value<UserAlteredVariable,ReturnField,null())

Labels (3)
1 Solution

Accepted Solutions
Or
MVP
MVP

You'd presumably want to use a variable with a Variable Input object.

Or_0-1701956424003.png

 

View solution in original post

2 Replies
Or
MVP
MVP

You'd presumably want to use a variable with a Variable Input object.

Or_0-1701956424003.png

 

andy-w
Contributor II
Contributor II
Author

Perfect, thanks!