ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Saving an Excel Spreadsheet with a particular name - Beginners (https://www.excelbanter.com/excel-programming/275792-re-saving-excel-spreadsheet-particular-name-beginners.html)

Rocky McKinley

Saving an Excel Spreadsheet with a particular name - Beginners
 
Hi David, try something like this...

Sub TryIt()
NameToday = "C:\ Purchase Order " & _
Application.Text(Now(), _
"dd.mm.yy - ") & _
Range("c17").Value & ".xls"

MsgBox NameToday

Application.DisplayAlerts = False
ThisWorkbook.SaveAs Filename:= _
NameToday, _
FileFormat:=xlNormal, _
Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, _
CreateBackup:=False
Application.DisplayAlerts = True
End Sub

--
Regards,
Rocky McKinley


"David Chances" wrote in message
om...
Cant seem to get this Save Function to work:

At the moment I have:

NameToday = "C:\ Purchase Order - " & Application.Text(Now(),
"dd.mm.yy - ") & Range("c17").Value

I want to change the order of what is saved, at the moment this
creates a file called:

Purchase Order - 01.09.03 Microsoft.xls [on the c drive]

I want to call it:

Microsoft - Purchase Order - 01.09.03.xls

I cant seem to get that to work by re-arranging the formula

Can anyone help.
Many thanks.





All times are GMT +1. The time now is 07:29 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com