VBA 选择了一个excel 文件,并打开
时间: 2023-06-02 14:05:41 浏览: 203
非常感谢您的提问。关于您所提到的VBA选择并打开Excel文件的问题,我可以为您提供以下代码:
```VBA
Sub OpenWorkbook()
Dim wb As Workbook
Dim filePath As String
filePath = Application.GetOpenFilename("Excel Files (*.xlsx*),*.xlsx*")
If filePath = False Then
MsgBox "No file was selected."
Exit Sub
Else
Set wb = Workbooks.Open(filePath)
End If
End Sub
```
请注意,以上代码仅供参考。如需更详细的解释或帮助,请告诉我。谢谢!
阅读全文