Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Crosstable --> $orphan

Hi

I want to create a crosstable, I've done it but when I take a look with the table viewer every field looks like a separate table with the &orphan and the name of the table as a prefix.

This's how I've done it:

INVENTORY_FAILURE2:
QUALIFY *;
UNQUALIFY CO_PRODUCT;
CROSSTABLE(Failure, Veces, 7)
LOAD co_enterprise,
co_art AS CO_PRODUCT,
DATE,
date(DATE) as Fecha_Inv,
year(date(DATE)) as Anno_Inv,
month(date(DATE)) as Mes_Inv,
day(date(DATE)) as Dia_Inv,
FAILURE1,
FAILURE2,
FAILURE3,
FAILURE4,
FAILURE5
FROM QvD\INVENTORY_FAILURE.QVD (qvd);

What am I doing wrong???

Thxs in advance

15 Replies
Not applicable
Author

Thank you Bruno – it’s great to know I’ve helped someone on the community since it is my first stop for help when I am stuck.

Kathryn Brown

kangaroomac
Partner - Creator II
Partner - Creator II

Hi Brad,

Well done! It's quite ironic, because I've just had the same thing happening ("Too" optimized load) and a quick search resulted in your answer.

Now the irony (as you know) is that we were sitting in the same office at the time...

Not applicable
Author

Thank you Brad,

Greetings

gallantabs
Contributor III
Contributor III

Three years on and your solution worked wonders for me on qliksense. Thanks

Dano
Contributor II
Contributor II

Another solution is to use Resident Load rather than load data directly from QVD.

 

neerajthakur
Creator III
Creator III

But why does it get created in the first place? What's the reason and does where 1=1 affects it to display correctly.

Thanks & Regards,
Please Accepts as Solution if it solves your query.