Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Regarding Loading data in Editor

Hi While we do "Load Data" in the script editor, I have many sections. example lets say 7 sections, I already loaded the 6 sections and now added section 7 . I just want to load only 7th section without commenting the remaining 6 sections where it load only 7th section.

Rams.

5 Replies
prat1507
Specialist
Specialist

You can use Partial Reload.

What is meant by partial reload? What is its use? Please explain!


Regards
Pratyush

Mark_Little
Luminary
Luminary

If you only want to load the 7th section.

Move the tab to the top of the list, just after the main tab.

At  the end of the 7th section at the line EXIT SCIPT;

Mark

agigliotti
Partner - Champion
Partner - Champion

There is not partial reload in Qlik Sense out of box.

rittermd
Master
Master

Always put a final section called Exit which contains Exit Script;

Then you can move this around or move your other sections around so that this is the last section.  It will only execute what comes prior to it.

Mark_Little
Luminary
Luminary

Another approach and one I normally take is using Subroutines.

https://help.qlik.com/en-US/sense/September2017/Subsystems/Hub/Content/Scripting/ScriptControlStatem...

You Start Each section with

SUB Section1

then at the End

END SUB.

Create a new tab where you call each sections

CALL Section1;

CALL Section2;

This then runs each section you call in the order you write them. You can then just comment out the call command for the sections you don't want to run.

Mark