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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
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

Labels (1)
6 Replies
tresB
Champion III
Champion III

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


tresB
Champion III
Champion III

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.

tresB
Champion III
Champion III

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