Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I created a very simple test document with two sheets and the following table:
TestTable:
load * inline [
%order
first
second
];
The first sheet has a single Text Object which has an Action that executes Select In Field %order the value 'first'.
I then set up Document Field Event Triggers on Set and Change of %order to Activate the second sheet.
Very simple, and it works perfectly in the QlikView desktop, however when I switch to Web View or Access point, the Field Event Triggers don't fire
even though I can see that the field value is being selected.
Any ideas why this doesn't work outside of the desktop environment?
Thanks,
Steve
i have the same issue... does anybody help us?
Hello Steven,
I've been using a workaround which consists in using a variable that is being set according to my needs. As such, for your case, you could have a variable called vShowFirstTab which could be set to 1 if Only(%order)='first' or 0 otherwise.
Then, in the sheet propreties, you may define the Show Sheet proprety to Conditional, with $(vShowFirstTab)=1
On your Text object, you can then add an extra action in which you set the vShowFirstTab variable to the appropriate value depending on the case.
Hope this helps, regards,
Philippe