AutoSum button

  • Thread starter Thread starter pk
  • Start date Start date
P

pk

Hello and help please!

In Excel XP, using VBA, is there a way to simulate a click
of the "AutoSum" button on the toolbar to insert a sum
formula into the current cell?

If so, can you supply example code to do it?

Thanks much in advance.
 
PK,

Try the following:

Application.CommandBars.FindControl(ID:=226).Controls(1).Execute
Application.CommandBars.FindControl(ID:=226).Controls(1).Execute

Yes, you need to execute it twice.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com (e-mail address removed)
 
Back
Top