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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Reload Data based upon sheet selection criteria?

My company has Low T computers, (windows XP) and large datasets, so is there any way to reload data based upon a user selection in a sheet or a run time variable in the data loading script?  that would solve a small demo issue for some users. . .

thanks in advance. .

1 Reply
Not applicable
Author

You can add a trigger to the field.  Go Settings -> Document Properties -> Trigger

Have the trigger execute a macro "eval".

Sub Reload

ActiveDocument.reload

End Sub

sub eval

set x = ActiveDocument.Fields("YourField").GetSelectedValues

if x(0).Text = "YourSelection" then

Reload

end if

end sub

Try this.  If it doesn't work, look into EDX.