copying vba code to a standard code module

1

1vagrowr

How do I copy vba code from a web page to a standard code module? Note: I
don't know what a standard code module is.

Thanks.
 
C

Chip Pearson

In the VBA editor, go to the Insert menu and choose Module. Cut
and paste the code from the web page to that module.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
B

Bob Phillips

Select the code on the web page, and then copy it Ctrl-C.

In Excel, go to the VBIDE (Alt-F11), and menu Insert>Module, then paste the
code (Ctrl-V) there.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Top