Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
MMCGLAESASAA
Contributor III
Contributor III

how can see manager of manager data in pivot in Tree format.

Hi All,

 

I am create a app in which i need to show manager of manager hierarchies data in Pivot tree format.

Please help me to sort out this issue.

 

Regards

ISME

 

4 Replies
Saravanan_Desingh

Can u show me a sample how your data looks like?

Or you can check the below example.

https://help.qlik.com/en-US/qlikview/April2020/Subsystems/Client/Content/QV_QlikView/Scripting/Scrip...

MMCGLAESASAA
Contributor III
Contributor III
Author

i used same Syntax but not working 

Hierarchy (NodeID, ParentID, NodeName, [ParentName], [PathSource], [PathName], [PathDelimiter], [Depth])(loadstatement | selectstatement)

Saravanan_Desingh

Did u say that this example is not working?

tab1:
Hierarchy(NodeID, ParentID, NodeName, ParentName, NodeName, PathName, '/', Depth) 
LOAD * Inline [
NodeID, ParentID, NodeName
1, 4, London
2, 3, Munich
3, 5, Germany
4, 5, UK
5, , Europe
];

TreeExample.PNG

Saravanan_Desingh

Please make sure that you are using '/' and not '\' in your code.