Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a workbook that uses many macros. I like to create a macro within a
form that allows user to "save as" file before exiting excel. Thanks, Mo |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hello Mo, Do the following to display the Save As dialog whenever the Workbook is closed... 1) Select the Macro code and press *CTRL + C* to copy it 2) Open your Workbook 3) Press *ALT + F11 * to open the VBE 4) Press *ALT + R* to display and activate the Project Explorer 5) Press *T*, ThisWorkbook should be highlighted, if not, Click on it 6) Press *CTRL + V* to paste the Macro code 7) Press *CTRL +S* to save the macro Code: -------------------- Private Sub Workbook_BeforeClose(Cancel As Boolean) Application.Dialogs(xlDialogSaveAs).Show End Sub -------------------- Sincerely, Leith Ross -- Leith Ross ------------------------------------------------------------------------ Leith Ross's Profile: http://www.excelforum.com/member.php...o&userid=18465 View this thread: http://www.excelforum.com/showthread...hreadid=381425 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Unable to open a 82 KB XLSM file due to "Too many different cellformats" & "Converter failed to open the file." errors. | Excel Discussion (Misc queries) | |||
Unable to open a 82 KB XLSM file due to "Too many different cellformats" & "Converter failed to open the file." errors. | Setting up and Configuration of Excel | |||
Programming a "Save as..." command button within Excel | Excel Discussion (Misc queries) | |||
Removing "Save As" Command from an excel file. | Excel Worksheet Functions | |||
Problem- Recording macros for "file save" and "File open" | Excel Programming |