I have an excel sheet with 1,373,760 used cells and each of them have a formula inside it unique in their own way. But every cell refers to a file path, which needs to be changed. Search and replace is taking huge amount of time and fails often at certain places. Is there an efficient way to replace these cells?
Sample formulae: '\root\folder\subfolder\another_folder[workbook_name]worksheet_name'cellNumber
Workbook, Worksheet, cell number are unique. Only the path is constant.
I tried referring to other cells by storing path and sheet names, but it's not working that way: Reference another workbook with dynamic worksheet name
All these cells are populated using VBA which took around 15 hours. So any efficient way to create the new workbook is appreciated as well.
Thanks in advance!!