Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

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

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

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;

tresB
Champion III
Champion III

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.