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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
muhammedraleen
Partner - Creator
Partner - Creator

Display a Text Opposite to Sheet Name

Hi All,

I need  a way to display a text, exactly opposite to where the sheet name appears in Qlik sense.

Please help me out if there's a way to do it..?

Thanks,

MR

Labels (2)
1 Solution

Accepted Solutions
saso70
Partner - Creator II
Partner - Creator II

Hi than you can do that with css only and the expression have to be change in title expression. Please remove 'YOUR TEXT' from  expression and add 'YourText' in content section in css:

='My new sheet'&REPEAT(CHR(160),190)&''

Please add multi KPI object on the sheet add in measure value = ' ' and in appearance select style add following css code:

#sheet-title .sheet-title-text::after {
content: "YourText";
color:red;
font-weight: 900!important;
}

saso70_0-1660552020673.png

 

View solution in original post

6 Replies
saso70
Partner - Creator II
Partner - Creator II

You can do it with css. Please add multi KPI object on the sheet add in measure value = ' ' and in appearance select style add following css code

#sheet-title .sheet-title-text{position: absolute; top: 0; right: 0; width: 200px; text-align:right;}

saso70_0-1660547861488.png

 

muhammedraleen
Partner - Creator
Partner - Creator
Author

Hi @saso70 ,

Thank you very much for your help. But I need sheet name in left and additional text in right.

 

Can you please help me on it..?

saso70
Partner - Creator II
Partner - Creator II

Please use REPEAT function in Title expression like this:

='My new sheet'&REPEAT(CHR(160),150)&'YourText'

muhammedraleen
Partner - Creator
Partner - Creator
Author

Hi @saso70 ,

 

Thank you very much for your great help... 

Can you please help me on how to bold and add color to the 'YourText' part only...

saso70
Partner - Creator II
Partner - Creator II

Hi than you can do that with css only and the expression have to be change in title expression. Please remove 'YOUR TEXT' from  expression and add 'YourText' in content section in css:

='My new sheet'&REPEAT(CHR(160),190)&''

Please add multi KPI object on the sheet add in measure value = ' ' and in appearance select style add following css code:

#sheet-title .sheet-title-text::after {
content: "YourText";
color:red;
font-weight: 900!important;
}

saso70_0-1660552020673.png

 

muhammedraleen
Partner - Creator
Partner - Creator
Author

This is what I exactly needed... Thank  you very much for your support and time.

Sure I'll Keep you in touch for my learnings