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

Help: How to create a List???

Hello,

so i want to create a list in Qlikview to show different shift: Morning, After, Night.

the content in this list is not in the server so it have to be created new.

what is the code for this??

the one i have is:

ShiftMap:

select * inline

[

morning,

after,

night

];

is this code correct???

1 Solution

Accepted Solutions
Not applicable
Author

It depends what you are trying to do with it. From your table name, it looks like you are trying to build a mapping load? That's different and you will need more info.  But to just create a table with those three lines, use:

ShiftMap:

LOAD * INLINE [
shift
    morning
    after
    night
]
;

View solution in original post

3 Replies
Not applicable
Author

It depends what you are trying to do with it. From your table name, it looks like you are trying to build a mapping load? That's different and you will need more info.  But to just create a table with those three lines, use:

ShiftMap:

LOAD * INLINE [
shift
    morning
    after
    night
]
;

Not applicable
Author

Thank you very much it is very helpful!!!!

Not applicable
Author

The easiest way to create an inline load is to just click Insert > Load Statement > Load Inline in the Script Editor. It will open up a table for you to enter your information. That way you don't have to worry about memorizing the syntax.