Shortcut Key for Subscripts/Superscripts

G

Guest

Guest
Does anyone know how the shortcut key to subscript/superscript highlighted text???

In word2000 you simply highlight and press CTRL-'=' for subscripting, CTRL+SHIFT+'=' for superscripting, but what about excel?
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
I don't think there is a keyboard shortcut. There's not even a supplied toolbar button! I trust that you know how to do it using Control+1.
 
Upvote 0
HI

This can only be done via format cells, i have never solved this one, also VBA can do the same but need to secect carefully what to super or subscript else all i guess.

I have date ie ... 27th febuary 2002 to th in super

HTH
 
Upvote 0
On 2002-02-27 15:49, Jack in the UK wrote:
HI

This can only be done via format cells, i have never solved this one, also VBA can do the same but need to secect carefully what to super or subscript else all i guess.

I have date ie ... 27th febuary 2002 to th in super

HTH


Never done it myself, but if it can be done in VBA use what you have selected to tell it what range to cover, i.e. the cells you have highlighted.

Sub SuperScriptText()
'Superscript's the selected area
With Selection.Font
.Superscript = True
End With
End Sub

Then assign your own shortcut keys for the Macro.


_________________
Regards,

Gary Hewitt-Long
This message was edited by gplhl on 2002-02-27 16:04
 
Upvote 0

Forum statistics

Threads
1,214,402
Messages
6,119,299
Members
448,885
Latest member
LokiSonic

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top