使用宏将 2003 excel 文件转换为 2007

发布于 2024-10-24 01:06:10 字数 249 浏览 4 评论 0原文

我有一个 2003 年的 Excel 文件,我希望在该 Excel 文件的同一位置将该文件转换为 2007 年的 Excel 文件,并删除 2003 年的文件。

如果可能,请告诉我

Function ConvertTo2007AndDelete (OldExcelFile As Workbook) As Workbook
     'Code goes here
End Function

提前致谢

I have a 2003 excel file, I wish to convert that file to a 2007 excel file in the same location of the excel file and delete the 2003 file.

Please let me know if this is possible

Function ConvertTo2007AndDelete (OldExcelFile As Workbook) As Workbook
     'Code goes here
End Function

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

趁年轻赶紧闹 2024-10-31 01:06:10

我使用“Windows Script Host”来删除文件,我确信有一种更简单的方法。

但我要做的就是打开一个 2003 年的电子表格并将其另存为 2007 年

ActiveWorkbook.SaveAs Filename:= _
    "C:\Users\Administrator.CLPOINT\Desktop\CSC1.xlsx", FileFormat:= _
    xlOpenXMLWorkbook, CreateBackup:=False

I use 'Windows Script Host' to delete files, I'm sure that there is an easier way.

but here is all I had to do to take an open 2003 spreadsheet and save it as 2007

ActiveWorkbook.SaveAs Filename:= _
    "C:\Users\Administrator.CLPOINT\Desktop\CSC1.xlsx", FileFormat:= _
    xlOpenXMLWorkbook, CreateBackup:=False
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文