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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
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.