我需要打开一系列的工作簿,其中有尾随字符,每天变化。
文件按以下约定命名:
文件名_YYYY_MM_DD_(随机尾随数字)
我做了大量的研究,只找到了与日期更改有关的答案。理想情况下,我希望能够围绕日期更改以及随机尾随字符的问题进行写作。
Sub openwb()
Dim sPath As String, sFile As String, sWild As String
Dim wb As Workbook
sPath = "the path where the file is located "
sWild = sPath & "Name of the file"
sFile = sPath & Dir(sWild)
Set wb = Workbooks.Open(sFile)
End Sub
2条答案
按热度按时间gojuced71#
使用
Format
、Date
和通配符*
:1tu0hz3e2#
打开文件夹中的Excel文件