... and then it would be a good start to record these actions
1) Save
2) Close
For the first you'll find
For the second
Now the question for you is how to put this under two buttons.
1) Drag two Command_Button (ActiveX Controls, from the developers toolbar) into your sheet.
2) Right click each and change the Caption into "Save" "Close" resp.
3) Double click the "Save" button. (the VBA editor opend and copy past the code
Private Sub CommandButton1_Click()
ActiveWorkbook.Save
End Sub
Same for Close
Private Sub CommandButton2_Click()
ActiveWorkbook.Close
End Sub
Bookmarks