Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Hierarchy problem

Hello everyone i have a problem and i want to now if someone can help me.

i have a table with this fields: SonID and ParentID these are production parts and i want to know how many sons a parent can have so i used Hierarchy and at first seems to work fine but only worked for some ParentID numbers but not for all of them, heres an example of the data i get from an SQL table

error loading image

so, what im trying to do is if a SonID shows also as ParetID get that ParentID's SonID and put it as a new level like this

error loading image

as you can see i found the SonID(9) in the ParentID column and create a new leve with that Parent's SonID, and also a SonID can at a time convert into a Parent and give place to multiple levels like this:

error loading image

you can have any number of sons and any number of levels.

i apreciate your help in advance and hope that theres a way to do this, also i have the general idea of how to do this with For sentence but i find it hard to realize how to use it in QlikView if anyone knows how can i do this with For sentence ill apreciate as well

thanks

8 Replies
tresesco
MVP
MVP

without understanding your requirement accurately, - if you are only bothered about the number of sons one parent is having, you can use:

Load ParentID, COUNT(SonID) as NumberOfSons From ... GROUP BY ParentID.;


tmumaw
Specialist II
Specialist II

Are you trying to work with the SAP Hierarchy from FI?

Not applicable
Author

No Thom im extracting a table qith both fields from an SQL database

Not applicable
Author

thanks Tresesco but no what i want at the end its a table with al the parents and their respective sons

tmumaw
Specialist II
Specialist II

Alfredo I just sent you an email.....you might be able to use pieces of it.

Thom

Not applicable
Author

Than yo very much Thome ill check it out

regards.

tresesco
MVP
MVP

You have to use HIERARCHY, something like this:



HIERARCHY(SonID, ParentID,Level)
LOAD ParentID,
SonID,
SonID as Level

FROM........;


Not applicable
Author

Thanks Tresesco that is actually what im doing but for some reason only works for some Parents not for all of them