Hi Dan,
Firstly please let me say that rewards are not neccasary. I do not do this is search of rewards, but to help other people and hopefully give back something to the community that I have used to learn my VBA knowledge from 
Now onto the job at hand 
The reason the datacore objects were having an issue was because of how I processed the strings.
A standard file name was like this:
So I used the '-' as delimiters, taking the 'location' to be all the text up to the first occurance of '-', and the item to be the text from that position up to the next occurance of '-'.
Of course once it then had a filename of the datacore type it missed the end of the item as the item name contained a '-':
I have now altered the code to look for the first occurance of '-' in the text, and have the 'location' as everything before that.
Then look BACKWARDS through the text for the first occurance of '-' in that direction, and then have the 'item' as everything between those 2 points.
Hopefully that will sort out any issues you were having.
I have also added a progress panel to try and avoid that 'feeling of doom' when the macro is taking it's time to run 
Does every file get updated every day, or is it possible there might only be 1 or 2 new files each day?
I ask because at the moment the macro blanks the summary page, then imports the data from the most recent version of each file, which is fine if the majority of files have changed, however it could get tedious if the majoriity of the files haven't changed, and yet we are throwing away perfectly valid data and then spending time reimporting it. In that case I could add a 'logging' feature to the workbook so that it would remember which files it had already imported, and then only import those that are newer than the ones it has already done, (if that makes sense!).
Of course there is no point in me adding this functionality if most of the files will be updated most times before the macro is run, as it will then be updating from every file anyway :P
Let me know how you get on with this new version
Bookmarks