Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Make selection according to result in straight table

Hello,

Do you know how to create following functionality:  We need make selection according to result of set analysis formula. We have initial data consist values mis, Operace, QlikView in field “aktivita”. In straight table we use set analysis formula “=if(sum(hodin) > 4, 1,0)“ The straight table then consist two values in field “aktivita” Can we use some QV functionality to make selection of this two values?

It is similar functionality to “searchable” function in straight table

Thank you for the advice

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Sure, add double quotes around them:

='(' & concat(if(aggr(sum(hodin),aktivita)>4, chr(34) & aktivita & chr(34)),'|') & ')'


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar

See attached qvw. You will need something to trigger a Select in Field action. In the example this is done by clicking on the text box.


talk is cheap, supply exceeds demand
Not applicable
Author

Thank you for reply, it was very helpful.

There is only one problem, if dimension value consist space then it doesn't work. Do you know how to fix it?

See attached qv.

Gysbert_Wassenaar

Sure, add double quotes around them:

='(' & concat(if(aggr(sum(hodin),aktivita)>4, chr(34) & aktivita & chr(34)),'|') & ')'


talk is cheap, supply exceeds demand