rename txtfile with Fiscal Year

M

MichaelTrainor

I need to rename an exported txt file with the Fiscal year (Jun-Jul) at the
end (format YYYYMMDD)

I'd like to use VB to do so
 
D

Douglas J Steele

The basic command is

Name oldpathname As newpathname

where oldpathname is a string expression that specifies the existing file
name and location (may include directory or folder, and drive) and
newpathname is a string expression that specifies the new file name and
location (may include directory or folder, and drive). The file name
specified by newpathname can't already exist.
 
Top