Ejemplo: excel vba obtiene la ruta del libro de trabajo actual
'VBA function to retrieve this workbook's full path:
Function FullPath()
With ThisWorkbook
FullPath = .Path & Application.PathSeparator & .FullName
End With
End Function
'--------------------------------------------------------------------
MsgBox FullPath
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)