Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to show text with an overline?

looking for how to show text with a overline.

Similar to CSS  text-decoration property: <span style="text-decoration: overline">text</span>

or could I use the CHR() funtion with a  Unicode Character 'COMBINING OVERLINE' (U+0305)

thanks

2 Replies
Not applicable
Author

Hi,

You can use Chr() to represent the special char's. If the Overline ascii code is 772 then use Chr(772).

Not applicable
Author

okay here was my simple test. =chr(773) + '12345'. The results show only the first characters with the overline. Any suggestions on getting the entire string with the overline?