We have an excel sheet with 4 or 5 different FormulaArrays.
Now we have to (why? long story, we just have to) remove this formulaArray (I need to repopulate the same region with some new data)
The process of deleting the formulaArray needs to be automated through vba code (why? again, long story!)
The question is how can I delete a formula array through VBA?
I've started off with something like this, but it's not quite there yet:
Thanks!
Now we have to (why? long story, we just have to) remove this formulaArray (I need to repopulate the same region with some new data)
The process of deleting the formulaArray needs to be automated through vba code (why? again, long story!)
The question is how can I delete a formula array through VBA?
I've started off with something like this, but it's not quite there yet:
Code:
Dim rng As Range
Set rng = wsIndexData.Range(wsIndexData.Cells(iStartRowIndex, iStartColIndex), wsIndexData.Cells(iStartRowIndex + 10000, iStartColIndex + 4))
rng.CurrentArray.Delete
Thanks!