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: 
Not applicable

Manage the pie chart title dynamically

Hello Friends,

How to display dynamically the pie chart title as like when I select a customer name it has to show in the pie chart title.

The customer name should be dynamic.

eg:

Year "The customer name" Chart.

Regards

Chriss

Labels (1)
1 Solution

Accepted Solutions
jagan
Partner - Champion III
Partner - Champion III

HI,

Try this

= If(GetSelectedCount(yourDimension) > 0, 'Year' & GetFieldSelections(yourDimension) & 'Chart', 'Default name')

If you select multiple values it shows all the values separated by comma.

Hope this helps you.

Regards,

Jagan.

View solution in original post

3 Replies
Not applicable
Author

='Revenue & Cost Per Employee Calculation - using ' &YTMMonth 

YTMmonth is a column name of my table and I am using it as a list box.

it changes and displays the selected month from the list box.

for u suppose vCustomer is your column name for customers then do this

='Year' &vCustomer& 'Chart'

I hope it helps

Cheers,

Gaurav

jagan
Partner - Champion III
Partner - Champion III

HI,

Try this

= If(GetSelectedCount(yourDimension) > 0, 'Year' & GetFieldSelections(yourDimension) & 'Chart', 'Default name')

If you select multiple values it shows all the values separated by comma.

Hope this helps you.

Regards,

Jagan.

Not applicable
Author

Thanks Gaurav and Jagan... its works....

Regards

Chriss