Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
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))

));