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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
nvijay5757
Creator
Creator

How to display superscript in Table Values

Hi,

How to display superscript in Table Values.

 i need to display as 1KD---> KD power 1   --- like superscript or subscript any one.

can you please help me. Thanks.

Labels (2)
1 Solution

Accepted Solutions
Or
MVP
MVP

chr(185) should get you a superscript 1 (for the others, see: https://community.qlik.com/t5/New-to-Qlik-Sense/Qlik-Sense-Super-Script-1-to-10-Chr-Functions/m-p/19... or just check a unicode chart)

You'd probably want to write this as a pick/match statement to make it cleaner:

Pick(Match(YourFormulaHere,'1','2'),chr(185), chr(178)) etc

View solution in original post

2 Replies
Or
MVP
MVP

chr(185) should get you a superscript 1 (for the others, see: https://community.qlik.com/t5/New-to-Qlik-Sense/Qlik-Sense-Super-Script-1-to-10-Chr-Functions/m-p/19... or just check a unicode chart)

You'd probably want to write this as a pick/match statement to make it cleaner:

Pick(Match(YourFormulaHere,'1','2'),chr(185), chr(178)) etc

nvijay5757
Creator
Creator
Author

Hi,

Thanks its working .