I'm confused when you say "I used the same exact path".
You should not be using this :
VBA Code:
FolderPath = "C:\Your\Folder\Path\" ' Change this to your folder path
Your path would be something like (but not identical to this) :
FolderPath = "C:\Users\logit\OneDrive\Desktop\MySaveFolder"
Description :
- 'C' is your hard drive. That doesn't change in this project.
- 'Users' refers to a section on your hard drive where all of your files are maintained. This also doesn't change in this project.
- 'logit' refers to the name of your computer. This needs to change to match your computer. When you startup your computer the initial welcome screen displays the name of your computer that you assigned to it initially. That is the name that replaces 'logit' in this path.
- '\OneDrive\Desktop\' also don't change in this project.
- 'MySaveFolder' is the name of the folder you create on your desktop where all the files will be copied to when running these macros. You can name the folder anything you want but make certain in the path coding you use the same name.