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

Announcements
Learn how to migrate to Qlik Cloud Analytics™: On-Demand Briefing!
cancel
Showing results for 
Search instead for 
Did you mean: 
nihhalmca
Specialist II
Specialist II

Dynamic Name Changing in Chart Caption

Hi All

I want to show dynamic header name changing for example ='country =' & country, if i select single country it will show country name on caption but if i select more than one selection on country it did not show on caption and what is difference between ='country =' & country and ='country =' & only(country) please let me know solution for this requirement

Thanks in Advance

Nihhal

10 Replies
bill_mtc
Partner - Creator
Partner - Creator

Above are possible solutions, but it will always depends on what you're exact requirement is. Try also below:

='Country = ' & Concat(DISTINCT Country,', ')

Concat() function, will provide you list of entity depending on your parameter. For above example, it will give you list of all distinct or unique country names when nothing is selected in list box, and it will show you one country name when selecting one country, so on...

Regards,

Bill