Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
rido1421
Creator III
Creator III

Cyclic Dimension Chart Title


Hi There

I have a bar graph with several expressions and  grouped Dimensions in a Cyclic format

My issue is that I need the title of the chart to change to the correct Dimension when clicking on the Cyclic

how can I achieve this?

Regards,

1 Solution

Accepted Solutions
Not applicable

Please try =GetCurrentField([your cyclic group]).

View solution in original post

7 Replies
Not applicable

Please try =GetCurrentField([your cyclic group]).

qlikoqlik
Creator
Creator

HI

= Chart Tile & GetCurrentField(Your Cyclic Group name) without any single or double quotes

Thanks and regards

Padma

Not applicable

Hi Rido

Please try to type in label field.

='xxxxx ' &GetCurrentField(Group_Name)

Hope it works.

rido1421
Creator III
Creator III
Author

Thanks much appreciated

sateeshkumar
Creator
Creator

Yeah it is working properly. But i need to display label of that field. How to get that??

Thanks in advance..

Not applicable

I think that's not possible. Maybe you can use an IF-statement? Something like this:

=IF(GetCurrentField([Your Group]) = 'cust_name', 'Customer Name',

IF(GetCurrentField([Your Group]) = 'vend_name', 'Vendor Name'

))

sateeshkumar
Creator
Creator

It is working fine, Thank you for your help.