Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
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
 
					
				
		
Hi,
You can use Chr() to represent the special char's. If the Overline ascii code is 772 then use Chr(772).
 
					
				
		
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?
