Use the control toolbox toolbar to draw a command button on your workbook - I have left t as command button 1, rename it to whatever you like, but if you do you'll have to edit the code below.
In design mode double click on the button and insert the code below into the shell code.
Take design mode off and the button should work.
[tt]Dim varSaveName As Variant, wbkActive As Workbook, shpSearch As Shape
Set wbkActive = ActiveWorkbook
varSaveName = Application.GetSaveAsFilename(Filefilter:="Excel Workbooks (*.xls),*.xls"

If varSaveName = False Then Exit Sub
ActiveSheet.Copy
For Each shpSearch In ActiveSheet.Shapes
If shpSearch.Name = "CommandButton1" Then shpSearch.Delete
Next
ActiveWorkbook.SaveAs (varSaveName)
wbkActive.Activate[/tt]