There are two option for buttons
Forms tool bar
Control tool box
Right click on a toolbar and check the toolbar you want
You can draw a button from the toolbar on your sheet.
When it is a forms button you can right click on it and assign a macro to it that is in a standard module of the workbook
When it is a control toolbox button go in Edit mode first(first button on this toolbar)
Then double click on the button and the VBA edito will open with this
Private Sub CommandButton1_Click()
End Sub
You can add your code between the two lines and close the edit mode.
The advantage of this button is that if you copy the sheet to a new workbook you also copy the code
in the sheet module to the new workbook. Your button will work in the new workbook.
If you use a forms button your code will not work in the new workbook because it point to the old file

Signature
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
>I only want to send one worksheet, but I would like to send it to the
> superintendent for approval using his e-mail address, and then send it to me
[quoted text clipped - 21 lines]
>> > I need the code for both the menu and the e-mail and instructions on how to
>> > place the macro on the button.
Gord Dibben - 25 Sep 2007 23:59 GMT
You can also assign a macro to any object you insert on a sheet, like a picture
of your mother-in-law or your favourite pub<g>
Gord Dibben MS Excel MVP
>There are two option for buttons
>
[quoted text clipped - 18 lines]
>
>If you use a forms button your code will not work in the new workbook because it point to the old file
dmshurley - 26 Sep 2007 21:59 GMT
This is good information. Thanks! I'm sure I will have many more questions.
In the e-mail code. How do I know which parts of the code to copy to the
VBA module to get it to work?
> There are two option for buttons
>
[quoted text clipped - 44 lines]
> >> > I need the code for both the menu and the e-mail and instructions on how to
> >> > place the macro on the button.
Ron de Bruin - 26 Sep 2007 22:12 GMT
Download the example workbooks on my mail page and see a few examples working with a button.

Signature
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
> This is good information. Thanks! I'm sure I will have many more questions.
>
[quoted text clipped - 49 lines]
>> >> > I need the code for both the menu and the e-mail and instructions on how to
>> >> > place the macro on the button.