VBA: Specify saved WorkBook name

Adar123

Board Regular
Joined
Apr 1, 2018
Messages
83
Office Version
  1. 2016
  2. 2010
Platform
  1. Windows
Hi all,

I am working with the following syntax to export and save the data in a new file.

VBA Code:
ActiveWorkbook.SaveAs FileName:=RatesFilenameMO_CSV, FileFormat:= _
        xlCSV, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False _
        , CreateBackup:=False, Local:=True

The challenge I face is that this code by default saves data on "Sheet1" inside the new file whereas I also need to rename the "Sheet1" to "Data". I am not familiar with this syntax of saving file, can I specify a sheet name within it?

Thank you.
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Have you tried changing the name of the sheet before saving it?

VBA Code:
Activeworkbook.Sheets("Sheet1").Name = "Data"
 
Upvote 0

Forum statistics

Threads
1,214,661
Messages
6,120,790
Members
448,994
Latest member
rohitsomani

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