Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
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

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