Zo Has
Zo Has

Reputation: 13018

Superscript in Crystal reports formula

I am trying to make part of array text into superscript inside my formula field. I tried rendering the field as HTML with a tag but it seems it is not supported. Following did not work

numberVar array arr:=["1<sup>st</sup>"];

Is there a way round this problem ?

Upvotes: 4

Views: 10853

Answers (2)

Cerveser
Cerveser

Reputation: 860

It turns out Crystal Reports works with superscript, only the same way as Visual Studio does. Just copy/paste one of these: ¹²³⁴⁵⁶⁷⁸⁹⁰

Upvotes: 6

As far as I'm aware, Crystal Reports doesn't support superscript at all, not for HTML (see here for supported tags if interested), or for RTF.

Off the top of my head, you would need two separate textboxes to achieve this effect, with the "st" text at a higher Y-position than the "1" to get "1st".

Upvotes: 4

Related Questions