gpt4 book ai didi

excel - 使用当前日期打开文件的宏

转载 作者:行者123 更新时间:2023-12-04 22:09:32 26 4
gpt4 key购买 nike

我正在使用宏打开一个文件,由于当前日期,文件名每天都会更改。

今天的文件\today_20120723。

我正在尝试这个,但它不起作用。建议

Dim OpenPath As String
Dim OpenName As String

OpenPath = "N:\File\": OpenName = OpenPath & "today_" VBA.Format (Date, "YYYYMMDD") & ".xlsx"



Workbooks.Open Filename:=OpenPath

谢谢您的帮助

最佳答案

一行多行代码读起来真的很痛苦。

也就是说,我不确定VBA.Format正在您的代码中执行此操作,但这应该可以:

OpenPath = "N:\File\"
OpenName = OpenPath & "today_" & Format(Date, "YYYYMMDD") & ".xlsx"

关于excel - 使用当前日期打开文件的宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11618583/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com