A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
There is a couple of ways of doing this and it depends on your requirements.
Could provide code that will open a dialog similar to the open command in Excel and you can select one file at a time or select multiple files from which to extract the data and copy to the single output workbook.
Alternatively can simply loop through all the files in a folder and copy the required data and paste to the Output workbook. This method works well if all of the source data files can be in the same folder. If there are other files in the folder that are NOT to be included, if the required files have a common string in the name (which will not be in the files to exclude) then this can be handled also but it is best if the source files are all in the same folder.
Where do you want the VBA code? 1. In the destination workbook, 2. In the Output workbook or 3. In a stand alone workbook from which the code is run and it will open the Output workbook and copy the data to it.
How do we identify the Source required sheet in the Source workbook? Will it always be the first sheet or will it always have the same name and if so what is the name?
I am assuming that for each workbook it will be necessary to locate the column header "Current Price".
Following paragraph added after initial posting:
If you run the code again at a later date, do you still want to use the same reader file? If so, do you want to append the new data to bottom of the previous data or do you want to delete the previous data?
I'll await your reply.