Can I use Word Toolbar commands in Excel.

N

NeedtoExcel.

I am using a Excel 2000 SP-3. I have noticed that there are more options
under the Toolbar/Customise/Command/Format in Word than in Excel. I am trying
to add a toolbar command for superscripting into Excel. Is this possible? Is
it possible to have all the options that I have in Word for Customizing a
toolbar as in Excel?
 
R

Ron de Bruin

Hi NeedtoExcel

You can add a button to a toolbar and use this macro

Sub test()
Selection.Font.Superscript = True
End Sub
 
Top