This is my scenario, I have a path that contains all excel files. Now, I want to implement a solution that will insert the current "Filename" in specific cell for that file.
For Example:
sample.xls
Sample2.xls
Sample3.xls
Inside that sample.xls, I want to inset the filename "sample" without the extension on cell "E7" and "E8" then save this file.
I currently have this formula to get the filename without the extension:
=MID(CELL("filename",A1),SEARCH("[",CELL("filename",A1))+1,SEARCH(".",CELL("filename",A1))-1-SEARCH("[",CELL("filename",A1)))