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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Hierarchies and Synthetic Views

Hi all,

I am an intern, and before today my hierarchy worked beautifully on v9, but as of today, Qlikview insists on creating a synthetic join within the hierarchy. The synthetic join alters the way it views the dollar data, and yield incorrect results. Inserting a QUALIFY *; breaks the update.

Here is an image of my hierarchy:

3.png

Here is an image of how Qlikview views the data:

1.png

Here is an image of the error with the QUALIFY *

2.png

Any assistance is welcome. Thanks!

1 Solution

Accepted Solutions
cesaraccardi
Specialist
Specialist

Yes, because the data you have in the initial table is already in the hierarchy load, so this creates a synthetic key between this 2 tables.

Just add the following line after the Hierarchy load:

DROP TABLE table1;

View solution in original post

4 Replies
cesaraccardi
Specialist
Specialist

Hi, are you droping the table "table1" after the resident load?

Not applicable
Author

Currently, I am not. should I be?

cesaraccardi
Specialist
Specialist

Yes, because the data you have in the initial table is already in the hierarchy load, so this creates a synthetic key between this 2 tables.

Just add the following line after the Hierarchy load:

DROP TABLE table1;

Not applicable
Author

Thank you very much.