Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewwizard
Master II
Master II

Selection method code

Hi All,

What is the use of this below script?

Please advise.

Relation_Method:

LOAD * Inline

[Flag1, Flag2

N, Y

Y, Y

N, N

];

1 Solution

Accepted Solutions
jagan
Luminary Alumni
Luminary Alumni

Hi,

This scripts creates an inline table called Relation_MEthod in the Datamodel with fields Flag1 and Flag2.

Regards,

Jagan.

View solution in original post

2 Replies
jagan
Luminary Alumni
Luminary Alumni

Hi,

This scripts creates an inline table called Relation_MEthod in the Datamodel with fields Flag1 and Flag2.

Regards,

Jagan.

ramoncova06
Partner - Specialist III
Partner - Specialist III

you mean to the inline ?

this is what the help section has

"inline is used if data should be typed within the script, and not loaded from a file. Use the Inline Data Wizard for help with the creation of load inline statements.

data ::= [ text ]

Data entered through an inline clause must be enclosed by double Quotation Marks in Scripting or with square brackets. The text between these is interpreted in the same way as the content of a file. Hence, where you would insert a new line in a text file, you should also do it in the text of an inline clause, i.e. by pressing the Enter key when typing the script. "

I guess the only thing missing is that this table is coma separated, so in order to separate Flag1 and Flag2 and their value you need to use coma