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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

the menu

hi, i want to make something like wat i have attached with this.how could i make it??

Thanks and regards

Darshika

6 Replies
tresesco
MVP
MVP

May be like attached, using buttons.

Not applicable
Author

hi,

thanks for ur reply but i want the left menu like it is mentiomed in the picture.and it should be dynamic like wen i click to it it should show the sub menu under the main menu and wen i click to the sub menu it should show me my desired kpi or graph


tresesco
MVP
MVP

Use text box/button and add action to it. For moving to new sheet you can use activate sheet trigger. For sub menu (activating kpi /graph) use conditional enablement for the object againds a variable balue. Use the text box action to set the variable value.

tresesco
MVP
MVP

PFA

Not applicable
Author

Dear Darshika

use this below code and add list box "TreeMenu"  your menu will be Hierarchy view check this out

Employee:

LOAD * INLINE [

EmployeeID, Name, Email, ManagerID

1, Ahsan, g@co.com

2, Abid, ss@co.com,

3, Kashif, f@co.com,

4, Maria, j@co.com, 1

5, noman, m@co.com, 2

6, kamran, e@o.com, 2

7, zeeshan, e@o.com, 3

]

;

Hier:

Hierarchy (EmployeeID, ManagerID, Name, ManagerName,  Name, TreeMenu)

LOAD EmployeeID, ManagerID, Name, recno() as recno

RESIDENT Employee

;

amit_saini
Master III
Master III

Hi Darshika,

Please see the attachment for "Tree Structure".

Thanks,

AS