I have a folder that updated versions of a file are saved to every hour. the format is always the same "yyyymmdd_hhmmss.xlsx". What I would like to be able to do is have a macro that looks in the folder and returns the count of the files that are like "yyyymmdd_*"
I know I could loop through the folder and do count = count + 1
but I would like to avoid that if possible since this folder holds thousands of files.
Any help would be appreciated. Thanks!