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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
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
Partner - Champion III
Partner - Champion III

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

Anders_Eriksson
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
Partner - Champion III
Partner - Champion III

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
Partner - Champion III
Partner - Champion III

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.

Anders_Eriksson
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
Partner - Champion III
Partner - Champion III

Good, you catched the logic.

Regards,

Jagan.