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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
leechanhee
Contributor II
Contributor II

merged data vertically

캡처.PNG        2.PNG

                              excel                                                         After loading

If the load is kind merge excel spaces , the spaces How do I handle this? There must fill in the data space just above.

Labels (2)
3 Replies
sunny_talwar
MVP
MVP

Do you want to see the extra spaces after the data is loaded? If yet try adding a SET Statement in your load

SET  Verbatim=1;

tamilarasu
Champion
Champion

Hi Lee


Like below,

Data:

LOAD If( IsNull(a), Peek(a),a) as a,

    b,

    c

FROM

Book2.xlsx

(ooxml, embedded labels, table is Sheet1);


Check the below thread.


Load Excel with merged row cell data

leechanhee
Contributor II
Contributor II
Author

thank you