Excel 2010 VBA 创建日期

发布于 2024-11-27 01:32:26 字数 76 浏览 1 评论 0原文

如何在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 技术交流群。

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

发布评论

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

评论(4

风透绣罗衣 2024-12-04 01:32:26
MsgBox ActiveWorkbook.BuiltinDocumentProperties("Creation Date")
'Output: 25.07.2011 14:51:11 

这适用于 Excel 2003,没有 2010 来测试它。
链接到 MSDN 文档 Office 2010,还有一个包含其他可用属性的列表。

MsgBox ActiveWorkbook.BuiltinDocumentProperties("Creation Date")
'Output: 25.07.2011 14:51:11 

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.

晒暮凉 2024-12-04 01:32:26

使用Scripting.FileSystemObject

Dim oFS As Object
Dim creationDate As String

Set oFS = CreateObject("Scripting.FileSystemObject")
creationDate = oFS.GetFile(ThisWorkbook.FullName).DateCreated

Use Scripting.FileSystemObject

Dim oFS As Object
Dim creationDate As String

Set oFS = CreateObject("Scripting.FileSystemObject")
creationDate = oFS.GetFile(ThisWorkbook.FullName).DateCreated
妄断弥空 2024-12-04 01:32:26

使用

ActiveWorkbook.BuiltinDocumentProperties.Item("Creation date").Value

列出所有属性运行此宏

Public Sub listProperties()
rw = 1
Worksheets(1).Activate
For Each p In ActiveWorkbook.BuiltinDocumentProperties
    Cells(rw, 1).Value = p.Name
    On Error Resume Next
    Cells(rw, 2).Value = p.Value
    rw = rw + 1
Next
End Sub

Use

ActiveWorkbook.BuiltinDocumentProperties.Item("Creation date").Value

To List all properties run this macro

Public Sub listProperties()
rw = 1
Worksheets(1).Activate
For Each p In ActiveWorkbook.BuiltinDocumentProperties
    Cells(rw, 1).Value = p.Name
    On Error Resume Next
    Cells(rw, 2).Value = p.Value
    rw = rw + 1
Next
End Sub
喜爱皱眉﹌ 2024-12-04 01:32:26

我发现 FileDateTime 效果最好。

FileDateTime (application.activeworkbook.path)

网络上的技术表示它适用于
适用于 Mac 的 Excel 2016、2013、2011、2010、2007、2003、XP 和 2000

MSDN VBA 2010 - 文件日期时间

I found that FileDateTime works best.

FileDateTime (application.activeworkbook.path)

Tech on the net says it applies to
Excel 2016, 2013, 2011 for Mac, 2010, 2007, 2003, XP, and 2000

MSDN VBA 2010 - FileDateTime

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文