Excel 2010 VBA 创建日期
如何在Excel 2010中使用VBA获取当前工作簿文件创建日期?我浏览了 ThisWorkBook 的所有属性,但似乎没有找到任何东西。
How to get the current workbook file creation date using VBA in excel 2010? I browsed all the properties of ThisWorkBook I don't seem to find something there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这适用于 Excel 2003,没有 2010 来测试它。
链接到 MSDN 文档 Office 2010,还有一个包含其他可用属性的列表。
This works for Excel 2003, don't have 2010 to test it.
Link to MSDN Doc for Office 2010, there is a list with other available properties on there, too.
使用Scripting.FileSystemObject
Use Scripting.FileSystemObject
使用
列出所有属性运行此宏
Use
To List all properties run this macro
我发现 FileDateTime 效果最好。
网络上的技术表示它适用于
适用于 Mac 的 Excel 2016、2013、2011、2010、2007、2003、XP 和 2000
MSDN VBA 2010 - 文件日期时间
I found that FileDateTime works best.
Tech on the net says it applies to
Excel 2016, 2013, 2011 for Mac, 2010, 2007, 2003, XP, and 2000
MSDN VBA 2010 - FileDateTime