I have a list of 150 filenames from the same directory in column A in an Excel workbook using
=REPLACE(CELL("filename"),FIND("[",CELL("filename")),LEN(CELL("filename")),"*")
at the top of the workbook and using formula
=IFERROR(INDEX(FileNameList,ROW()-2),"")
to list each filename in the directory.
I want to reference D4 in each of these files and put the value of this next to the filename in column B of this external workbook.
How can I go about retrieving these?