Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
MuraliPrasath
Creator III
Creator III

Automatic Title Change?

Hi,

I've a show conditions buttons for pivot table.but based on the user's selection my title needs be shown.

For example:  If the user selected the  MML and RXV then title needs to show MML & RXV together.

aaaaaaaaaaaaaa.jpg

sssssssssssssssss.jpg

1 Solution

Accepted Solutions
jagan
Luminary Alumni
Luminary Alumni

Hi,

Instead of setting 1 & 0 you can set MML & blank space, RXV & blank space etc.  If you attach sample file then it would be easier to understand.

Regards,

Jagan.

View solution in original post

9 Replies
Chanty4u
MVP
MVP

Hi ,

Create an html file and give that link path in actions..

hope this helps you

Thank you

Suresh

anderseriksson
Partner - Specialist
Partner - Specialist

Don't see a problem here?

I guess your buttons sets variables that you use in show conditions for the expressions in the table.

Use calculated titles and the same variables and it should be easy.

Anonymous
Not applicable

can you post your title of your Pivot table

how to you Combine the button into title?

jagan
Luminary Alumni
Luminary Alumni

Hi,

Give this below expression in Title

=vMML & ' & ' & vRXV & ' & ' & vICL & ' & ' & vBBB & ' & ' & vTotal

Replace vMML, vRXV, vICL, vBBB and vTotal with your actual variable names.


Hope this helps you.


Regards,

Jagan.

MuraliPrasath
Creator III
Creator III
Author

Hi Jagan,

Here is my title code.

=vShowMML & ' & ' & vShowRXV & ' & ' & vShowICL & ' & ' & vShowBBB & ' & ' & vShowTotal

but the title output shows like this now. 

1 & 0 & 0 & 0 & 0

jagan
Luminary Alumni
Luminary Alumni

Hi,

Instead of setting 1 & 0 you can set MML & blank space, RXV & blank space etc.  If you attach sample file then it would be easier to understand.

Regards,

Jagan.

anderseriksson
Partner - Specialist
Partner - Specialist

This will do it;

= Replace(Replace(if(vShowMML, 'MML§') & if(vShowRXV, '§RXV§') & if(vShowICL, '§ICL§') & if(vShowBBB, '§BBB§') & if(vShowTotal, '§Total'), '§§', ' & '), '§', '') & ' Schedule'

MuraliPrasath
Creator III
Creator III
Author

thanks Jagan.

Finally I'm using the below one to show the selected button title on Pivot table..

=if(vShowMML,'MML')&'  '& if(vShowRXV,'RXV') &'  '& if(vShowICL,'ICL') &'  '& if(vShowBBB,'BBB') &'  '& if(vShowTotal,'Total')

jagan
Luminary Alumni
Luminary Alumni

Good, you catched the logic.

Regards,

Jagan.