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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Driving a text box action based on the expression value of the textbox

Hello,

          I have a dashboard which has text boxes, the textbox values are expression which would result in a numeric value and there is an action of navigating to a new sheet set on each text box. I want to perform this action only when the textbox value is > 0. How can I acheive this?

r/U

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

if the sheet ID you want to select is SH02 and the field to test is "valore' then

the trigger select sheet in the button is:

=if(valore>0, 'SH02','')

Not applicable
Author

Thanks for you reply Alexander. The same does not work for Select in Field Action i.e for both the Field and Search String.

Ex:  If Code is a field and if Variable v_OpenIncidents>0 then I need to select 'TXT' from the Code field. This is what I have given.

Field:   =if($(v_OpenIncidents)>0,code)

SearchString:   =if($(v_OpenIncidents)>0,'TXT')