Add a little function to find the last occurence of a character within a string ...
Function FindLast(ByVal StringToSearch, ByVal StringToFind As String) As Integer
Dim LastCount
LastCount = 0
While InStr(LastCount + 1, StringToSearch, StringToFind) > 0
LastCount = InStr(LastCount + 1, StringToSearch, StringToFind)
Wend
FindLast = LastCount
End Function
Then use this to find the last back slash in the file path...
Dim LastSlash
LastSlash = FindLast(ThisWorkbook.Path, "\")
If LastSlash > 0 Then
MsgBox Left(ThisWorkbook.Path, LastSlash)
Else
MsgBox "Top level directory"
End If
Bookmarks