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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
hopkinsc
Partner - Specialist III
Partner - Specialist III

Help with Hierarchy

Hi all,

I'm trying to get a bill of materials Hierarchy working, Can anyone explain how this function is used please?


2 Replies
Not applicable

Hi,

You can try as

Hierarchy(FatherCode,ChildCode,Name)

Load

*

from

....,

so you can get a possible hierarchy and from that you can perform your calculations.

hope it helps

its_anandrjs
Champion III
Champion III

You can try like this way

Hierarchy:

HIERARCHY([Father Code], [Child Code], Name)

LOAD

     [Father Code],

     [Child Code],

     Name

FROM

Location;

Or you can try this way from this post

Re: Table refering to itself