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

Announcements
Congratulations to the new Qlik Luminary and Partner Ambassador class! Meet them here
cancel
Showing results for 
Search instead for 
Did you mean: 
lakshmanvepuri
Creator
Creator

Excel Data to Qlikview Transformation as Excel

Hi Gurus,

 

Please let me know how do I get the Excel data in left to right side as mentioned in the screenshot.

 

Thanks

LK Vepuri

Labels (2)
1 Solution

Accepted Solutions
kaushiknsolanki
MVP
MVP

Hi,

You should use the basic transformation while loading the data in Qlikview.

Your script should look like below.

 

LOAD ID,
Section,
Manager,
ChequeID,
Details
FROM
[Book1.xlsx]
(ooxml, embedded labels, table is Sheet1, filters(
Replace(1, top, StrCnd(null)),
Replace(2, top, StrCnd(null)),
Replace(3, top, StrCnd(null))
));

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

1 Reply
kaushiknsolanki
MVP
MVP

Hi,

You should use the basic transformation while loading the data in Qlikview.

Your script should look like below.

 

LOAD ID,
Section,
Manager,
ChequeID,
Details
FROM
[Book1.xlsx]
(ooxml, embedded labels, table is Sheet1, filters(
Replace(1, top, StrCnd(null)),
Replace(2, top, StrCnd(null)),
Replace(3, top, StrCnd(null))
));

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!