File saved as .xlsx Retaining the VB Modules

Shiseiji

Board Regular
Joined
Oct 23, 2009
Messages
214
Office Version
  1. 2019
Platform
  1. Windows
The goal is to have a file without any modules and if no changes are made, when closed gives no warning to save changes.
My file has a large number of modules. The last module is to save the file as a .xlsx and I understood doing so should remove all the modules. The modules are being retained until the file is closed. When closing the file a warning is rendered about saving changes.

Applicate any assistance!
Ron

VBA Code:
Sub SaveFinalasXLSX_m()
' properties name = SaveFinalasXLSX
    With Application
      .DisplayAlerts = False
      .ScreenUpdating = True
      .DisplayStatusBar = True
      .Calculation = xlManual
      .OnTime Now + TimeSerial(0, 0, 0.1), "m_ClearStatusBar"
      .StatusBar = "Saving as a regular Excel file."
      .OnTime Now + TimeSerial(0, 0, 10), "m_ClearStatusBar"
      .ScreenUpdating = False
    End With 'Application
'
    Dim WbPath As String
    Dim varPath As String
    Dim fPath As String
    Dim FileP As String 'file path entered into Range("FinalSave") on the [Start] worksheet.
    Dim ThisWb  As Workbook
'
    Set ThisWb = ActiveWorkbook
    With ThisWb
'
    varPath = ThisWorkbook.Path
    fPath = Replace(varPath, "\", "/") & "/Temp/"
    WbPath = ThisWorkbook.Path
'
    FileP = Range("FinalSave")
    ThisWb.SaveAs FileP & "AD_Listing_" & Format(Now, "mm-dd-yyyy  hmmAM/PM") & ".xlsx", FileFormat:=51
'
   With Application
      .DisplayAlerts = False
      .ScreenUpdating = True
      .DisplayStatusBar = True
      .Calculation = xlManual
      .OnTime Now + TimeSerial(0, 0, 0.1), "m_ClearStatusBar"
      .StatusBar = "Completed saving as a regular Excel file."
      .OnTime Now + TimeSerial(0, 0, 10), "m_ClearStatusBar"
      .ScreenUpdating = False
    End With 'Application
    End With 'ThisWb
End Sub
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
How about adding these two lines
VBA Code:
    FileP = Range("FinalSave")
    Application.DisplayAlerts = False
    ThisWb.SaveAs FileP & "AD_Listing_" & Format(Now, "mm-dd-yyyy  hmmAM/PM") & ".xlsx", FileFormat:=51
    Application.DisplayAlerts = True
 
Upvote 0
Fluff, appreciate your taking a look at this. The code below resulted in the message below when I immediately tried to closed the file:

1640099828402.png


VBA Code:
Sub SaveFinalasXLSX_m()
' properties name = SaveFinalasXLSX
    With Application
      .DisplayAlerts = False
      .ScreenUpdating = True
      .DisplayStatusBar = True
      .Calculation = xlManual
      .OnTime Now + TimeSerial(0, 0, 0.1), "m_ClearStatusBar"
      .StatusBar = "Saving as a regular Excel file."
      .OnTime Now + TimeSerial(0, 0, 10), "m_ClearStatusBar"
      .ScreenUpdating = False
    End With 'Application
'
    Dim WbPath As String
    Dim varPath As String
    Dim fPath As String
    Dim FileP As String 'file path entered into Range("FinalSave") on the [Start] worksheet.
    Dim ThisWb  As Workbook
'
    Set ThisWb = ActiveWorkbook
    With ThisWb
'
    varPath = ThisWorkbook.Path
    fPath = Replace(varPath, "\", "/") & "/Temp/"
    WbPath = ThisWorkbook.Path
'---Replaced with Test 1 per https://www.mrexcel.com/board/threads/file-saved-as-xlsx-retaining-the-vb-modules.1190890/--
'    FileP = Range("FinalSave")
'    ThisWb.SaveAs FileP & "AD_Listing_" & Format(Now, "mm-dd-yyyy  hmmAM/PM") & ".xlsx", FileFormat:=51
'==Test 1==
    FileP = Range("FinalSave")
    Application.DisplayAlerts = False
    ThisWb.SaveAs FileP & "AD_Listing_" & Format(Now, "mm-dd-yyyy  hmmAM/PM") & ".xlsx", FileFormat:=51
    Application.DisplayAlerts = True
' Save Change Warning rendered when immediately closing file.
'==End Test==
'
   With Application
      .DisplayAlerts = False
      .ScreenUpdating = True
      .DisplayStatusBar = True
      .Calculation = xlManual
      .OnTime Now + TimeSerial(0, 0, 0.1), "m_ClearStatusBar"
      .StatusBar = "Completed saving as a regular Excel file."
      .OnTime Now + TimeSerial(0, 0, 10), "m_ClearStatusBar"
      .ScreenUpdating = False
    End With 'Application
    End With 'ThisWb
End Sub
 
Upvote 0
Hadn't noticed that you are already turning off alerts, so there is no need for those two lines I added.
That said you are not turning alerts on again, however if it's asking you if you want to save, then something has changed in the file, or it needs to be recalculated.
 
Upvote 0
You could add this to the ThisWorkbook module:

VBA Code:
Option Explicit

Private Sub Workbook_BeforeClose(Cancel As Boolean)
    If Right(ThisWorkbook.Name, 4) = "xlsx" Then
        'Assume file was saved as xlsx, hence we do not want the save changes question
        ThisWorkbook.Saved = True
    End If
End Sub
 
Upvote 0
Hadn't noticed that you are already turning off alerts, so there is no need for those two lines I added.
That said you are not turning alerts on again, however if it's asking you if you want to save, then something has changed in the file, or it needs to be recalculated.

No success with adding "calculate" just before the save or adding Jan's module to the ThisWorkbook module. The workbook is retaining the modules, but if I close it without saving and re-open it, the modules are gone.
Strange . . .

R
 
Upvote 0
The modules & code will not be removed until the workbook is closed.
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,942
Messages
6,122,366
Members
449,080
Latest member
Armadillos

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top