Save Workbook With Cell Value

VinceF

Board Regular
Joined
Sep 22, 2007
Messages
172
Office Version
  1. 2016
Platform
  1. Windows
Greetings...
The below code saves the workbook with todays date. Is it possible and if so what changes would I have to make to the code to save it as a number that I have in a cell.
In the workbook I have a sheet called "Main" and on that sheet in cell "AA3" is a number that changes after each golf round that is played. Ideally I'd like it to save as... "Round (the number in cell AA3)"
For example.... After playing Round 5, it'd be saved as "Round 5" instead of todays date.

Sub SaveWithTodaysDate()
ActiveWorkbook.SaveAs ("C:\Golf\Results\" & Format(Now(), "DD-MMM-YYYY") & ".xlsm")
End Sub

Thanks,
VinceF
Excel 2016
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
VBA Code:
ActiveWorkbook.SaveAs ("C:\Golf\Results\" & ThisWorkbook.Sheets("Main").Range("AA3").Value & ".xlsm")

If cell AA3 has "Round 5" this code will save the Workbook as "Round 5.xlsm"
 
Upvote 0
Solution
Pete, Thank you so much, it works exactly as needed...
VinceF
 
Upvote 0

Forum statistics

Threads
1,215,109
Messages
6,123,137
Members
449,098
Latest member
Doanvanhieu

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