Macro to save in current location

Ian1976

Board Regular
Joined
Feb 4, 2016
Messages
137
Office Version
  1. 365
Platform
  1. Windows
hi all,

I'm after some help please, I'd like a macro that when pressed via a cmd button will save my workbook using the text in cell J1 and N1 and then add the current date which is in cell L1,and if possible to be saved in the current location!

Thanks!
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
How about
Code:
Sub Ian1976()
   Dim Fname As String
   
   Fname = Range("J1") & Range("N1") & Format(Range("L1"), "dd-mm-yyyy")
   ThisWorkbook.SaveAs ThisWorkbook.path & "\" & Fname & ".xlsm", 52
End Sub
 
Upvote 0
Thank you Fluff works lovely! How can I add a space between N1 & L1?
 
Last edited:
Upvote 0
Like
Code:
   Fname = Range("J1") & Range("N1") &[COLOR=#ff0000] " " &[/COLOR] Format(Range("L1"), "dd-mm-yyyy")
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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