Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
kishorj1982
Creator II
Creator II

Drill down requirement

Hi all,

I am using  Hierarchy Area->Country->company->Region

When ever I am navigating to company my navigation display chart caption would be

SelectedAreaName|SelectedCountryName


for Area to  Region  display would be


SelectedAreaName|SelectedCountryName|SelectedCo,panyName


Can you please suggest how to proceed


4 Replies
Anil_Babu_Samineni

What if Country has 2 values for selected one which is associate to another one?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
mdmukramali
Specialist III
Specialist III

Hi,

can you tyr something like belw:

=if(GetPossibleCount(Area)=1,Area,'')&' '&

          if(GetPossibleCount(Country)=1,Country,'')&' '&

                    if(GetPossibleCount(company)=1,company,'')

madhumitha
Creator
Creator

Hi Kishor,

Please try this

GetFieldSelections(Area,',',100)&' '& GetFieldSelections(Country,',',100)&' ' & GetFieldSelections(company,',',100)&' ' & GetFieldSelections(Region,',',100)

Thanks!

satheshreddy
Creator III
Creator III

Hi Kishor,

use getfieldselection() function and use separator as you want.

getfieldselection(fieldname) &'|'&getfieldselection(fieldname)

Regards

Sathish