Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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;
}
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;}
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..?
Please use REPEAT function in Title expression like this:
='My new sheet'&REPEAT(CHR(160),150)&'YourText'
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...
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;
}
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