I found another issue with my beforesave. Everything seems to work just fine and it looks like the file is being saved. I do not get any errors, however when I try and look for the file in the area I selected to save it, the file is not there. I do a search in start and see the properties say it is there but it says the folder is empty. Here is my beforesave code: Could it be that since I have a template that is .xlsm instead of .xltm that it is not doing the save as the .xls correct? Or does that even matter? I have the .xlsm set up to auto clear so they can continue to use the same form over and over to enter their data and then save each time they are done. I see these files are somewhere saved, I just do not know where they went.
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Dim ws As Worksheet
Set ws = ActiveSheet
Dim DelRange As Range
Dim MergeRange() As String
Dim cel As Range
Dim i As Long
Dim filename As Variant
ActiveSheet.Unprotect
Application.ScreenUpdating = False
Application.DisplayAlerts = False
Application.EnableEvents = False
'to save saveas
filename = Application.GetSaveAsFilename(InitialFileName:="C:\Users\" & Environ$("username") & _
"documents\", fileFilter:="Excel Files (*.xls), *.xls")
Application.DisplayAlerts = False
'clear fields and highlighting
ws.Range("B4,B7:B10,B12,C12,G9,E74,E77,B67,D10,G4,G5,B69,A16:A50,B16:B50,C16:C50,D16:D50,E16:E50,F16:F50,A55:A64,B55:B64,C55:C64,D55:D64,E55:E64,F55:F64").ClearContents
'Clear contents merged cell
Set DelRange = Range("A72:G72,B74:C74")
For Each cel In DelRange
If cel.MergeArea.Cells.Count > 1 Then
i = i + 1
ReDim Preserve MergeRange(1 To i)
MergeRange(i) = cel.MergeArea.Address
End If
Next
DelRange.ClearContents
Call ClearMerged
Call ClearColor
Application.ScreenUpdating = True
Application.DisplayAlerts = True
ActiveSheet.Protect
Application.EnableEvents = True
End Sub
Bookmarks