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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Mahamed_Qlik
Specialist
Specialist

Need help

Hi All,

I need dynamic title in chat text as per cyclic drop down list.

CyclicIssue.png

there is one cyclic group which has three dimensions(original dimensions renamed in label)

I want to display the dimensions from drop down to title in chart.


Like, if i select savings reason from cyclic drill down in chart then it should show Top-10 Savings reasons.

Same if i select lost reason frrom cyclic drill down in chart then it should show Top-10 Lost reasons



Regards,

mahamed

17 Replies
Mahamed_Qlik
Specialist
Specialist
Author

Here is that.

jonathandienst
Partner - Champion III
Partner - Champion III

Can you reduce that in size?

Preparing examples for Upload - Reduction and Data Scrambling

You probably need something like this:

='Top 10 - ' & Pick(Match(GetCurrentField(GroupName), 'first field name', 'second field name'), 'first label', 'second label')

Replace the field names and labels according to your needs

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Mahamed_Qlik
Specialist
Specialist
Author

Jonathan,

It works for only single field name and its label.

Any reason?

Anonymous
Not applicable

Try with GetCurrentField('GroupName')

Digvijay_Singh

I think only way to go is as Jonathan suggested. Pick/Match will help to define three values in one go. I don't see any function available which picks the label of the group dimension field.

Not applicable

Hi Mahamed,

Try this

='Top 10 - ' & if(GetCurrentField(GroupName)='Value1','Value1',

                         if(GetCurrentField(GroupName)='Value2','Value2',

                              if(GetCurrentField(GroupName)='Value3','Value3')))


Hope this may help's you.


Regards,

Arjun.

Mahamed_Qlik
Specialist
Specialist
Author

Hi arjun,

What if I have multiple group name? again i have to right the above expression for each group name.

Is there any way to make the group name dynamic too?

Anonymous
Not applicable

In this case, you just define those Group Name and then try to implement like what we does in Adhoc Reports.

Adhoc reporting in Qlikview