ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Macros in Excel - Save as and rename file (https://www.excelbanter.com/excel-programming/274297-re-macros-excel-save-rename-file.html)

Tom Ogilvy

Macros in Excel - Save as and rename file
 
Another way would be to use the built in Name statement
Dim sPath as path
ActiveWorkbook.SaveAs Filename:="Bob.CSV", FileFormat:=xlCSV
sPath = ActiveWorkbook.Path
if right(sPath,1) < "\" then sPath = sPath & "\"
ActiveWorkbook.Close
Name sPath & "Bob.CSV" as sPath & "Bob.ps"

Note that this will not make the file a postscript file. You would need
some type of conversion program to do that. Perhaps using Acrobat distiller.

--
Regards,
Tom Ogilvy

Gisle Rong wrote in message
...
Hello
I am to make a postscript (.ps) file from excel, but I cennot save the

excel
worksheet as a .ps file. I have therefore made a macro that saves the
worksheet as a .csv file. However, I have not managed to rename the .csv
file to a .ps file by usint the same macro.

The following is to be done:
Microsoft Excel formet - .csv format - .ps format.

Greatful for any reply.

Gisle Rong






All times are GMT +1. The time now is 12:15 AM.

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