Can I add equation editior to my toolbar in EXCel as an icon?

G

Gord Dibben

happy

Not as far as I can see.

You could record a macro whilst going through Insert>Object then add a button
to your toolbar with that macro assigned to the button.

Sub test()
ActiveSheet.OLEObjects.Add(ClassType:="Equation.3", Link:=False, _
DisplayAsIcon:=False).Activate
End Sub


Gord Dibben Excel MVP
 
Top