Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
hic
Former Employee
Former Employee

Hierarchies are very common in all database and business intelligence solutions. Usually they are balanced and with a fix number of levels, and then they do not pose any problems. Just load the data, add a drill-down group, and you’re done.


Adjacent Notes source 2.png

But there is one type of hierarchy that is somewhat tricky to get right – an unbalanced, n-level hierarchy. Typical for this type of hierarchy is that the levels are not named, and you really don’t know on which level you need to search for a specific node.

 

Usually such a hierarchy is stored in an Adjacent Nodes table, i.e. a table that has one record per node and each node has a reference to its parent.

 

Such a table can be loaded into QlikView directly using the Hierarchy prefix. This prefix will transform the Adjacent Nodes table into an Expanded Nodes table that has additional fields that you can use in your app.

 

Data model single table - BP.png

 

With the fields in this table, you can easily create a pivot table and a tree-view list box. Below you can see some wine districts displayed in both these object types:

 

Tables - BP.png

 

One challenge with hierarchies is that you can refer to a node in two different ways: Either to the node including the entire sub-tree, or to the node only, excluding all sub-nodes. In the example with the wine districts, it would mean any wine from Bordeaux, and unspecified Bordeaux, respectively. In the pivot table above, the difference is obvious: Any wine from Bordeaux sums up to 150 units, and the unspecified Bordeaux sums up to 18 units.

 

A user usually wants to make selections referring to the entire sub-tree, but the above solution does not have any field for this. To create such a field, you need the second hierarchy-resolving prefix – the HierarchyBelongsTo.

 

This prefix will also transform the hierarchy table. The result will be a table containing one record per descendant-ancestor pair. In other words, the ancestor (tree ID) will link to all its descendants (node ID), and can thus be used to make selections of entire sub-trees. (The “TreeBridge” table in the picture below.)

 

But it doesn’t stop here… The above solution creates one field in which tree searches can be made, but in order to create a drill-down for trees, you need an additional table – an expanded nodes table for the trees. This can be created with a second Hierarchy statement, but now one that links to the tree ID instead of the node ID. (The “Trees” table in the picture below.)

 

Data model full - BP.png

 

The data model with the three hierarchy tables is the one I recommend: It generates all fields you need.

 

A more elaborate explanation with script examples can be found in the technical brief about Hierarchies.

 

HIC

 

Further reading related to this topic:

Authorization using a Hierarchy

Bill of Materials

44 Comments
hic
Former Employee
Former Employee

Assuming that the data set has a NodeID and a ParentID, you could do something along the following:

// ==== Find first 5 levels
For Level = 1 to 5
TopLevels:
Load
NodeID as TopLevelNodeID,
ParentID as TopLevelParentID,
$(Level) as Level
From HierarchyFile (txt)
Where not Exists(TopLevelNodeID, NodeID) // to prevent the same node to be loaded twice
and (
IsNull(ParentID) // or whatever defines a root node
or Exists(TopLevelParentID, ParentID) // load only nodes whose parents already are loaded
) ;
Next Level

// ==== Load the hierarchy
Hierarchy:
Hierarchy (NodeID, ParentID, NodeName)
Load
NodeID,
ParentID,
NodeID as NodeName
From HierarchyFile (txt)
Where Exists(TopLevelNodeID, NodeID) ; // Load only nodes found in the previous load

Drop Table TopLevels ;

0 Likes
1,025 Views
pennetzdorfer
Creator III
Creator III

@hic: Great blog post - that helps a lot! 
Unfortunately, the link to the script example is broken: http://community.qlik.com/docs/DOC-5334
Would you mind sharing it again?

491 Views
hic
Former Employee
Former Employee

Yes, unfortunately Qlik has removed this white paper. Try https://www.dropbox.com/s/yk60kca5m9yllj8/Hierarchies.pdf?dl=0

HIC

471 Views
10FS100
Partner - Contributor II
Partner - Contributor II

@hic Hi Hendrick, thank you for very insightful 

Could you advice please on this topic, but in Qlik Sense? 

What would be the best way to represent an unbalanced hierarchy in QS? 

I have a different goals, like: 

1. Presenting the org structure of an unbalanced hierarchy, so users can view it graphically. (So far I tried to Org chart from the Qlik Vizualization bundle, but it has some limitations, maybe there's a better way?) 

2. To represent it in a table view alongside with some KPIs

 

Thank you in advance,

Serhii

390 Views