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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
kevbrown
Creator II
Creator II

Title

I want to name my chart whatever the current selection is but only to the last selection made. So, I have Zone, Unit, Product. I was my initial title to say "Score", then once I've selected Zone, I want it to say "Score Zone" (whatever the zone is they've selected), once a unit is selected it needs to read "Score Unit", therefore ignoring the Zone.  Ideas?

Kev

Labels (1)
13 Replies
kkkumar82
Specialist III
Specialist III

Then u have to mix mine and kushals code

kevbrown
Creator II
Creator II
Author

That only pulls down the field name, not the value

tresB
Champion III
Champion III

Try like:

='Score '& GetCurrentField(DrillGroupName) &': ' & $(=GetCurrentField(DrillGroupName))

kkkumar82
Specialist III
Specialist III

'Score '& if( getselectedcount(Zone)>0, Concat(distinct Zone,',') & ' ' &subfield(GetCurrentSelections(),':',1),'')


Try this for Zone