Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to use searchable expression for a straight table having multiple conditional dimension

Dear All,

I have a straight table.Where multiple conditional dimensions i.e-Selecting a/multiple dimension(s) the table will be generated .Now I have some expressions.I want to use searchable option on the expressions so that the user can input a condition(>1000) ,on their input the output will be reflected in those expressions.

Please help.

1 Reply
marcus_sommer

Do you want to filter the table to the results of the expressions? Then you will need listbox-expressions like these:

aggr(sum(Value), Dim1, Dim2)

     or maybe

class(aggr(sum(Value), Dim1, Dim2), $(vBucketSize) /* maybe 1000 */)

- Marcus