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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
paulwalker
Creator III
Creator III

Display in Textbox

Hi Community,

I need to show Navigation in Textbox...

I have one Drill Down group

Division-->Category-->Product

This Drilldown group i took in Listbox..

If i am select Division drill into Category drill into Product.

Thanks in Advance..

Labels (1)
1 Solution

Accepted Solutions
Digvijay_Singh
MVP
MVP

Improved expression to display arrows based on selection -

=GetFieldSelections(Division)&

  if(len(GetFieldSelections(Category))>0 and len(GetFieldSelections(Division))>0,'-->')&

GetFieldSelections(Category)&

  if(len(GetFieldSelections(Product))>0 and len(GetFieldSelections(Category))>0 ,'-->')&

GetFieldSelections(Product)

View solution in original post

2 Replies
Digvijay_Singh
MVP
MVP

Something like below may be -

You can use getfieldselections, I am using PE, don't have access to others QVW, so sharing the sample expression in case it can help -

=GetFieldSelections(Division)&'-->'&GetFieldSelections(Category)&'-->'&GetFieldSelections(Product)

Capture.JPG

Digvijay_Singh
MVP
MVP

Improved expression to display arrows based on selection -

=GetFieldSelections(Division)&

  if(len(GetFieldSelections(Category))>0 and len(GetFieldSelections(Division))>0,'-->')&

GetFieldSelections(Category)&

  if(len(GetFieldSelections(Product))>0 and len(GetFieldSelections(Category))>0 ,'-->')&

GetFieldSelections(Product)