Written by Allen Wyatt (last updated May 30, 2022)
This tip applies to Excel 2007, 2013, 2016, 2019, and Excel in Microsoft 365
Bill has a "before save" macro that tests three cells. If the cells are empty, then the macro stops the user from saving. In other words, they are required to fill in the cells before they can save the workbook. Bill would like to save this workbook as a template, but when he clears the three cells, the macro also stops him from saving as a template. He would like the template to be "clean," with a default of the three cells being empty. Users would create a new workbook based on the template and then (correctly) not be able to save unless the cells are filled in. Bill wonders how he can save the workbook as a template, with the three cells empty.
There are actually a number of different approaches you could take to save your template.
The first is to change the name of your workbook to something rather esoteric, such as X27TT3W.xlsm. Then, add some logic to your "before save" macro that checks to see if the name of the base workbook is X27TT3W. If it is, then allow the workbook (or template) to be saved regardless of the condition of the three cells. Once the template is saved, you can then rename it in Windows to your desired name, and it can be shared with your users. Unless they guess the esoteric name you chose, they won't be able to save the workbook without making sure the three cells are filled in.
Another approach is to simply add another event handler to your workbook—this one that executes when you first open the workbook—to clear the contents of the three cells. This could be something simple, like this:
Private Sub Workbook_Open() Sheet1.Cells(1,1).Clear Sheet1.Cells(2,1).Clear Sheet1.Cells(3,1).Clear End Sub
This macro clears the cells at A1:A3. If you want to have it clear a different range, just change the three lines to reflect which cells you want to clear. Then, put something in the three cells (so that it passes your testing in the "before save" macro), and save it as a template.
Another approach that is very easy to implement is to simply disable events before you save the template. This is not done within a macro, but within the Immediate window in the Visual Basic Editor. All you need to do is enter this single line:
Application.EnableEvents = False
Immediately save your workbook as a template, and then enter the following line in the Immediate window of the Visual Basic Editor:
Application.EnableEvents = True
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13547) applies to Microsoft Excel 2007, 2013, 2016, 2019, and Excel in Microsoft 365.
Program Successfully in Excel! John Walkenbach's name is synonymous with excellence in deciphering complex technical topics. With this comprehensive guide, "Mr. Spreadsheet" shows how to maximize your Excel experience using professional spreadsheet application development tips from his own personal bookshelf. Check out Excel 2013 Power Programming with VBA today!
Hold down the Shift key as you open a workbook, and Excel bypasses any "startup macros" that may be in the workbook. If ...
Discover MoreWant to get rid of all the zero values in a range of cells? This tip provides a couple of different ways you can ...
Discover MoreYou can easily add a button to your worksheet that will allow you to run various macros. This tip shows how easy it is.
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2018-07-09 12:36:29
Dave Bonin
In my case, I'm the only one writing macro code and templates for others to use.
To ensure other users do or don't do certain things, I built a simple function that
checks whether Application.UserName contains my name, "Bonin".
If it does, then I might have the code ask whether I'm saving the file as a "user" or
as a "developer".
If it does not, then I typically force the user option.
I include this function wherever I need to. For today's example, I would put it in a
Workbook_BeforeSave() macro.
___
Of course, if you have multiple developers, you can expand the Application.UserName
checks to include many users, some perhaps with different privileges.
2018-07-09 10:23:28
Steven
In the second scenario, that deletes the cell contents on open, wouldn't that then delete the valid contents entered by a user when they re-open the document? If true, then only a PDF printout of the spreadsheet would be viewable and be the only record of the valid contents, once the spreadsheet was opened the second time.
2018-07-09 09:08:50
Mathew
When writing complicated macros/code, I always includes a binary testing variable. I set it to true, while testing.
Then in the code itself, I use an If...then block to exclude running that section when Testvar = true.
When I'm done testing what I need, then I can reverse the variable in the if...then block, and work on another area.
This allows me to control what I want to run and what I want to isolate while testing.
At the end, I do have to go through the code and verify either: 1) all the testvar variable are correctly set, or 2) remove all the testing if...then blocks.
2018-07-07 15:45:16
Col Delane
The last option (disabling the Event Handler) can actually be done within a macro!
If you create one macro to disable events, viz;
Sub DisableEvents ()
Application.EnableEvents = False
End Sub
and another to enable them
Sub DisableEvents ()
Application.EnableEvents = True
End Sub
you can run these macros like any other without having to open the Visual Basic Editor.
You can either include them in the template workbook (best in a separate "Administrators" module, or add them to your Personal.xlsm so you can run them anytime for any workbook.
2018-07-07 08:31:18
ES
Something like this
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Dim Ans As Integer
Dim Rng As Range
'List of cells
Const NotEmptyCells = "A1,A3,C13"
Set Rng = Range(NotEmptyCells)
'Format choice
Ans = MsgBox("Save As template ?", vbYesNoCancel + vbQuestion, "Save as... (format)")
'Stop default process
Application.EnableEvents = False
'
Select Case Ans
Case vbYes 'Template
Rng.ClearContents
ActiveWorkbook.SaveAs Filename:=Left(thisworbook.Name, InStr(".", ThisWorkbook.Name) - 1) & "_template.xltm", _
FileFormat:=xlOpenXMLTemplateMacroEnabled
Case vbNo 'All except template
If Application.CountA(Rng) = (Len(NotEmptyCells) - Len(Replace(NotEmptyCells, ",", ""))) Then
MsgBox "You must enter values into cells " & NotEmptyCells & Chr(13) & "FILE NOT SAVED.", vbOKOnly + vbExclamation, "ERRORS VALUES"
Else
'
ActiveWorkbook.Save
End If
Case vbCancel 'STOP
End Select
'Stop default process
Cancel = True
'Stop default process
Application.EnableEvents = True
'
Set Rng = Nothing
End Sub
ES
2018-07-07 07:15:16
Barry
Why not just have a special exit password in one of the cells or could even bee another cell way off the user screen e.g. AZ1000000. This password is an otherwise invalid value for the cell, which is tested in the "Before Save" macro which if present deletes the password and then saves the workbook.
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2023 Sharon Parq Associates, Inc.
Comments