我尝试从excel VBA打开存储在Sharepoint(HTTPS)中的Excel文件。问题是每天更改文件名,所以我尝试使用通配符打开它而不成功。如果我把存档的全名我可以打开它。 这是我的代码:
sub abrir()
Dim xlFile As String
Application.ScreenUpdating = False
Application.DisplayAlerts = False
xlFile = "https://xxxxxx.sharepoint.com/:x:/x/xxxxx/xxxxxxx/xxxxxx/xxxxxxx/xxxxxxx/xxxxx/excel file" & "*.xlsx"
Workbooks.Open xlFile
end sub