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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Ishaan_Kumar
Contributor III
Contributor III

Selecting values in Filter Pane based on value in a variable

I have created one input box where a user can enter ID to fetch a particular row from below table.
However, I also have a filter pane for ID.

How to achieve above task? 

 

I was somehow trying to achieve to select ID in filter pane based on ID entered by user and thus below table shows only that particular row. 

Labels (1)
2 Replies
anat
Master
Master

create variable like vVariable and store the inputbox values in these variable

then use below expression to show only entered ID values in the object

Sum({< ID = {'$(vVariable)'} >} sal)

 

 

Ishaan_Kumar
Contributor III
Contributor III
Author

The value entered is a dimension not a measure.