superscirpting

B

BC

I want to superscript an answer to a formula. Example:
A1+A2=50. I want to have 50 and then superscript A or 1
next to the 50. How do you do this function?
 
R

Ron de Bruin

I don't understand exactly what you want to do
But maybe this will help you to change a part of the string to Superscript

Range("A1").Value = "Hey There "
Range("A1").Characters(Start:=1, Length:=3).Font.Superscript = True
 
Top