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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
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 .