Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everybody!
I have a qlikview document where there are many script tabs and I created a new one.I want to make a partial reload for only the last tab which I have added.
To achieve that and after of searching and reading in comunity I wrote
mytable:
REPLACE
Sql select * from
May be you can skip this variable using the below script
If IsPartialReload() = 0 then
Variables;
END IF
Add and Replace are Qlik functionalities. Can you try this?
mytable:
ADD/REPLACE
Load * From table where AttikaDate= '$(vReloadDate)';
Sql select * from
May be you can skip this variable using the below script
If IsPartialReload() = 0 then
Variables;
END IF
Works Perfect!Thank you very much !!!