Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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:

Here is an image of how Qlikview views the data:

Here is an image of the error with the QUALIFY *

Any assistance is welcome. Thanks!
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;
Hi, are you droping the table "table1" after the resident load?
Currently, I am not. should I be?
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;
Thank you very much.