Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Dynamic Chart title

Hi,

I have a chart for which i would like to set a dynamic title.

So I am calculating a count(Key) in my graph and in the title i would like to display: Open bugs = count(key)

if i just write =count(key), it works.

but i want to display if(status = 'open', count(key)) and this doesnt work.

What should i change?

Thanks!

1 Solution

Accepted Solutions
erichshiino
Partner - Master
Partner - Master

Did you put the =' in the beggining?

The tittle shoud be exactly this

= 'Open bugs: ' & count({<status={open}>} key)

View solution in original post

4 Replies
erichshiino
Partner - Master
Partner - Master

Hi,

This if will only work if there is only one possible value (selected) for status (=open)

You can use set analysis.

The tittle expression will probably be:

= 'Open bugs: '& count({<status={open}>} key)

Hope this helps,

Erich

Not applicable
Author

guagechart.bmpThe count still doesnt come right. It should display the title as: Open bugs: 2

but instead it is giving the expression only!

erichshiino
Partner - Master
Partner - Master

Did you put the =' in the beggining?

The tittle shoud be exactly this

= 'Open bugs: ' & count({<status={open}>} key)

Not applicable
Author

Thanks so much for your help! In addition to this, if i want to make only the number part in a bigger font, how can i do that?