No
sub change_name(path as string)
'Remove the "650" from the end
dim newpath as string
'***newpath = left(path,(len(path-3)) & "txt"
if Len(path) >= 3 then ' bulletproof it
newpath = left(path,len(path)-3) & "txt"
Name path as newpath
End if
end sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.