I am deleting all files in a subfolder, then I am deleting all subfolders, then I am trying to delete the main folder.
All work except the last rmdir
I am the only one with access to this server, and no workbooks are open when I run the procedure.
Code:
Kill ("H:\Scorecards\Quality\*.*")...
I am trying to check to see if a directory exists. If it does not it needs to create the directory. If it does exists go to next procedure.
The code works if it does not exists, but does not work if the directory exists.
Code:
If Len(Dir("H:\Scorecards\")) = 0 Then
MkDir...
I have a static list of numbers (Vendor ID) and the job cycles through each number and opens a file (if present).
The problem is that the On Error only works the first time through the job. I can not use On Error Resume Next, because I have lines of code that if the file opens that need to be...
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.