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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Hierarchy

Hello,
I've tried an example of this forum and it works fine. I would only know, if there is a possibility to select all the Items if i select the Parent.

e.g. if i select World, it should select all, if i select Europe, it should select UK, France, Italy.

Sorry for my english.

Thank you,
Egon.

Here is my script:

T1:
LOAD * INLINE [
ID, ParentID, Name
1, , World
2, 1, Europe
3, 2, UK
4, 2, France
5, 2, Italy
6, 1, Africa
7, 6, Nigeria
8, 6, South Africa
];

Hierarchy(ID, ParentID, Name,,Name,TreeView) Load
ID,
ParentID,
Name
Resident T1;

drop table T1;

error loading image

1 Solution

Accepted Solutions
brenner_martina
Partner - Specialist II
Partner - Specialist II

Hi,

if you select World by closed listbox it selects all undergroups, if you have it open, it selects only, what you click.

View solution in original post

2 Replies
brenner_martina
Partner - Specialist II
Partner - Specialist II

Hi,

if you select World by closed listbox it selects all undergroups, if you have it open, it selects only, what you click.

Not applicable
Author

Thank you Martina

PS. Hätte mir nicht gedacht, daß es so einfach ist Smile