Workbook_open

vmjan02

Well-known Member
Joined
Aug 15, 2012
Messages
1,116
Office Version
  1. 365
  2. 2021
  3. 2019
  4. 2016
  5. 2013
I have this code and is all perfect, only need a modification so that at a time of saving the files on respective path, it should ignore or disable the workbook_open module at the time of saving

ThisWorkbook.SaveCopyAs in this part it should not save (ref screen shot)

VBA Code:
Sub SavefinalOutput1()
    Dim SavePath As String
    Dim SavePath1 As String
    Dim fileName As String
    Dim NewWorkbook As Workbook

    SavePath = ActiveWorkbook.Path & "\" & "AEmailToDOFiles" & "\"
    SavePath1 = ActiveWorkbook.Path & "\" & "JIRA_Final_Report" & "\"
    
    
    fileName = "Jira Daily Report-" & Sheets("Report").Range("c11").Value & ".xlsm"
    ThisWorkbook.SaveCopyAs SavePath & fileName
    ThisWorkbook.SaveCopyAs SavePath1 & fileName
    
End Sub

screen shot :- this part should not be saved in part of ThisWorkbook.SaveCopyAs
1713949638410.png
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
You are talking about writing code to manipulate the VBA code modules in your project, an advanced topic. Here is some reading to get you started.

 
Upvote 0

Forum statistics

Threads
1,221,813
Messages
6,162,117
Members
451,743
Latest member
matt3388

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