Add "Equation 3.0" button to Excel toolbar.

  • Thread starter Thread starter DarrenL
  • Start date Start date
D

DarrenL

I use Microsoft Equation 3.0 frequently. I was able to add a button to the
toolbar in Word to insert equations without going through the whole "Insert,
Object..." deal and would like to do so in Excel also. Does anyone know if
this is supported?
Thank you!
 
I have never seen an Icon for this.

Perhaps a macro assigned to a button.

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


Gord Dibben MS Excel MVP
 
Back
Top