Greets'
I've got a good one .. i think
Okay, i've got a project, take the 3000 files given to me, and rename each file based on the contents of one of its cells, C4.
So, my vba needs to scan the folder assigned, check out C4, and then rename the wb.
Help!
ps: i've been reading a lot about people wanting to get lists of files from their computers folders. The easiest way to do this is open a command prompt, go to the folder and type
DIR >FILE.TXT
this will create a file called file.txt with a list of everything in the folder.
If you do dir /? you will get a list of commands you can use.. Personally i like the;
dir /b >mp3s.txt
this will just list file names, no size, no nothing extra.
dir /s >allfiles.txt
this will give you all files in a folder and its sub-folders.
anyway, food for thought.
I've got a good one .. i think
Okay, i've got a project, take the 3000 files given to me, and rename each file based on the contents of one of its cells, C4.
So, my vba needs to scan the folder assigned, check out C4, and then rename the wb.
Help!
ps: i've been reading a lot about people wanting to get lists of files from their computers folders. The easiest way to do this is open a command prompt, go to the folder and type
DIR >FILE.TXT
this will create a file called file.txt with a list of everything in the folder.
If you do dir /? you will get a list of commands you can use.. Personally i like the;
dir /b >mp3s.txt
this will just list file names, no size, no nothing extra.
dir /s >allfiles.txt
this will give you all files in a folder and its sub-folders.
anyway, food for thought.