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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Excel Load

Dear Guru's,

i have requirement, where i have to import data from excel as attached.

Data is in format of sheet 1 and we need the data to be in format of sheet 2.

request to let me know how to load this data, thanks in advance

1 Solution

Accepted Solutions
Not applicable
Author

Dear Friends,

Found the answer ....

Table:

LOAD @1 as Country,

     @2 as State,

     @3 as Region

FROM

Data.xlsx

(ooxml, no labels, table is SystemFile, filters(

Transpose(),

Replace(1, top, StrCnd(null)),

Replace(1, top, StrCnd(null)),

Replace(2, top, StrCnd(null))

));

View solution in original post

1 Reply
Not applicable
Author

Dear Friends,

Found the answer ....

Table:

LOAD @1 as Country,

     @2 as State,

     @3 as Region

FROM

Data.xlsx

(ooxml, no labels, table is SystemFile, filters(

Transpose(),

Replace(1, top, StrCnd(null)),

Replace(1, top, StrCnd(null)),

Replace(2, top, StrCnd(null))

));