polarisking
Member
I'm attempting to speed things up when searching a multi-sheet workbook, cell by cell, for links within a cell.
My approach is to use INSTR to find the value ".xl" within the actual formula text.
When I do this cell by cell, I have to use artifacts like cell.formula and cell.hasformula.
I'd like to load the worksheet's entire used range into an ARRAY and search that instead. However, when I load the range, the values of the cells are loaded as opposed to the formula text.
Any ideas as to how I capture the actual formula text in the array with the standard load statement: Array = Range(Cells(1, 1), Cells(#Rows, #Cols))
Thanks in advance.
My approach is to use INSTR to find the value ".xl" within the actual formula text.
When I do this cell by cell, I have to use artifacts like cell.formula and cell.hasformula.
I'd like to load the worksheet's entire used range into an ARRAY and search that instead. However, when I load the range, the values of the cells are loaded as opposed to the formula text.
Any ideas as to how I capture the actual formula text in the array with the standard load statement: Array = Range(Cells(1, 1), Cells(#Rows, #Cols))
Thanks in advance.