Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Can you somehow hard-code selections? For example, If I want to only see items related to orders that took place after 2010, is there any way to hard code this so that Qlik doesn't load anything before 2010?
If its a universal filter than apply a WHERE filter in the data load in your script.
Go to file -> edit script and scroll or hit the tab where you are loading date related information
ex:
Load
Date,
otherfield1,
otherfield2,
etc..
from ....
Where Year(Date) >=2010;
If its a universal filter than apply a WHERE filter in the data load in your script.
Go to file -> edit script and scroll or hit the tab where you are loading date related information
ex:
Load
Date,
otherfield1,
otherfield2,
etc..
from ....
Where Year(Date) >=2010;