VBA Code improvement

jrlopez

New Member
Joined
Mar 25, 2025
Messages
1
Office Version
  1. 365
  2. 2024
  3. 2021
  4. 2019
Platform
  1. Windows
Hello guys, recently I've been able to code an Excel workbook to be able to be saved and then clear the original content as well as give a ticket number, now I want to improve it, I want the workbook to be saved with an extra which is a name for the workbook as well as the ticket number, I want to add it to my code which is here but I don't know where should I add it or if any changes need to be made.

VBA Code:
Sub SaveDuplicate ()

Dim vWBold As String

Range ("H9").Value = Range ("H9").Value + 1
vWBOld = ActiveWorkbook.FullName
Application.Dialogs(xlDialogSaveAs).Show
Application.DisplayAlerts = False
ActiveWorkbook.SaveAs (vWBOld)
Sheets("Sheet1").Range("B6:B13").ClearContents

End Sub

I would also like to know if I can automatically change where it should be saved, meaning that Everytime anyone pushes the button to save the workbook and clear it after, the saved workbook goes to onedrive or SharePoint.

Thank you!!
 
Hi @jrlopez
I need a little more input or information of what you're planning to do.

Where does the ticket number come from and where does it go?
Should the workbook be saved automatically as a copy with a file name suffix or manually with the filename already shown as a suggestion?

I can't figure out what you're trying to achieve with your code.
Could you describe it in detail?

Best regards
 
Upvote 0

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