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: 
Sean_BI
Creator
Creator

List table Tree Hierarchy

Hello QV Experts -

I need to build treeview structure for list box. 

when Region is selected all the members under Region should be auto selected.

when State is selected all the members under State should be auto checked.

when City is selected all the members under City should be auto checked.

Issue:

The State check box selection is disabled. I need the ability select Region, State and City check boxs.

Script:

BuildHier:
LOAD Region,
State,
City,
Region &'/'& State &'/'& City as Hier1
FROM
[C:\User\Qlikview Samples\Hierarchy_Example.xlsx]
(ooxml, embedded labels, table is Sheet3);

Concatenate(BuildHier)
Load Distinct
Region,
Region as Hier1
Resident BuildHier;

Concatenate(BuildHier)
Load Distinct
Region,
State,
Region as Hier1
Resident BuildHier;

Concatenate(BuildHier)
Load Distinct
Region,
State,
City,
Region as Hier1
Resident BuildHier;

Appreciate any assistance here.

Rgds,

Sean.

 

 

 

Labels (1)
3 Replies
sergio0592
Specialist III
Specialist III

Hi,

Have you checked "Show as tree view"in  Properties/General tabs ?

Sean_BI
Creator
Creator
Author

Yes. Show as treeview is enabled and / as delimeter. 

Can I use hierarchybelongs to function to build nodes. But I don't have node id, and parent I'd to build hierarchy using hierarchy method. 

Rgds, Sean. 

sergio0592
Specialist III
Specialist III

I have on case where i use Tree Hierarchy in list box. But the field used results of Oracle hierarchical function (SYS_CONNECT_BY_PATH).