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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
Manni_SM
Creator II
Creator II

label format

Hi All @Vegar  @rubenmarin 

i want to format the straight table  field name to bold and background colour to red in QLiksense how can i achieve this ?

 

Manni_SM_0-1758706052597.png

 

Labels (4)
1 Solution

Accepted Solutions
Lucke_Hallbergson
Employee
Employee

CSS can't be added to a formula like that.
Multi KPI object extension allows you to add CSS (or a 3r'd party extension like https://github.com/alner/qsSimpleKPI - example below)

Lucke_Hallbergson_0-1758785656680.png

 

View solution in original post

7 Replies
robert_mika
MVP
MVP

Not possible natively but only thru CSS.

Are you using SaaS or on Premise version?

 

Manni_SM
Creator II
Creator II
Author

On prem version 

 

What is alternative way to do this .?

robert_mika
MVP
MVP

Depends on the version but you may still have the MultiKPI object.

There is part where you can add CSS script (somehere at the bottom)

Not sure if this is worth it as yoou need to keep the object on the page anyway

You can try as well:

https://community.qlik.com/t5/Member-Articles/Top-10-Viz-tips-part-IX-Qlik-Connect-2025/ta-p/2509324

@Patric_Nordstrom  solution

Lucke_Hallbergson
Employee
Employee

Like this?

Lucke_Hallbergson_0-1758712465958.png

 

CSS Styling is applied to sheet under Sheet/Styling/Custom styles.

Paste below code -

.sn-table-cell.sn-copy-cell {
background-color: red;
font-weight: bold;
color: white; /* Optional: white text for better contrast on red background */
}

Manni_SM
Creator II
Creator II
Author

 

Hi i tried below  but no luck

Manni_SM_1-1758713562138.png

 

giving garbage error

Manni_SM_0-1758713500619.png

 

robert_mika
MVP
MVP

This only works in cloud version.

IS Styling on the Sheet

 

Find MultiKPi object and tray to add that code there

Lucke_Hallbergson
Employee
Employee

CSS can't be added to a formula like that.
Multi KPI object extension allows you to add CSS (or a 3r'd party extension like https://github.com/alner/qsSimpleKPI - example below)

Lucke_Hallbergson_0-1758785656680.png