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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Crosstable resident load

Hi,

got somewhat of a brainfreeze. Anyone sees why the below script results in no table when run?

INITIAL:

CrossTable(Month, Data)
LOAD [Type],
    
[201206],
    
[201207],
    
[201208],
    
[201209],
    
[201210],
    
[201211],
    
[201212],
    
[201301]
FROM

(
ooxml, embedded labels, header is 2 lines, table is Data);

FINAL:
Load *
Resident INITIAL
where Data>10;
Drop table INITIAL

Labels (1)
1 Solution

Accepted Solutions
rubenmarin

Hi Olle, I see two possibilities:

1.- There is no Data>10 in  INITIAL table.

2.- The FINAL table is autoconcatenated in INITIAL table and then dropped, add 'Noconcatenate' clause:

FINAL:
NoConcatenate Load *
Resident INITIAL
where Data>10;
Drop table INITIAL

View solution in original post

4 Replies
vikasmahajan

hiii,

attach hej.xlsx for checking

vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
rubenmarin

Hi Olle, I see two possibilities:

1.- There is no Data>10 in  INITIAL table.

2.- The FINAL table is autoconcatenated in INITIAL table and then dropped, add 'Noconcatenate' clause:

FINAL:
NoConcatenate Load *
Resident INITIAL
where Data>10;
Drop table INITIAL

sunny_talwar

I think it must be the second one. NoConcatenate should solve the problem.

Not applicable
Author

It was the second one, thanks!!