📅  最后修改于: 2022-03-11 14:51:54.092000             🧑  作者: Mango
'VBA function to retrieve this workbook's full path:
Function FullPath()
With ThisWorkbook
FullPath = .Path & Application.PathSeparator & .FullName
End With
End Function
'--------------------------------------------------------------------
MsgBox FullPath