Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Set fso = CreateObject("Scripting.FileSystemObject")
Set objFolder = fso.GetFolder(CurDir)
For Each objFile In objFolder.Files
If UCase(Right(objFile.Name),4) = ".XLS" Then
MyFile = objFile.Name
' Insert your renaming logic here
If objFile.Name <> MyFile Then
objFile.Name <> MyFile ' Rename the file
End If
End If
Next