Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
anat
Master
Master

when function error in qlikview

as per qlikview help manual i am trying to execute when function ,but i am getting script error .

when A=1 LOAD * from myfile.csv;

Any suggestion how to run it?

Regards

............

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Define a variable and then try your script like:

Let A=1;

when A=1 LOAD * from myfile.csv;

Note: Syntax error may be seen, just ignore that.

View solution in original post

4 Replies
Mark_Little
Luminary
Luminary

Hi,

Try

LOAD *

from myfile.csv

where A=1;

Mark

Chanty4u
MVP
MVP

hi,

Sample:

LOAD *

from myfile.csv

where A=1;

Not applicable

LOAD *

from myfile.csv

where A=1;

tresesco
MVP
MVP

Define a variable and then try your script like:

Let A=1;

when A=1 LOAD * from myfile.csv;

Note: Syntax error may be seen, just ignore that.