My goal is to copy-paste formulas from tableSource (a ListObject) to tableDest (also a ListObject) and to have those pasted formulas refer to tableDest, not to tableSource, which is what I get when I do a little something like this:
ListObjSource.ListRows(1).Range.Copy
rangeDestination.PasteSpecial xlPasteFormula
...resulting in formulas within tableDest referring to not their native ListObject.
One could use Replace to edit the strings but is there a smarter way?
Thanks in advance.
ListObjSource.ListRows(1).Range.Copy
rangeDestination.PasteSpecial xlPasteFormula
...resulting in formulas within tableDest referring to not their native ListObject.
One could use Replace to edit the strings but is there a smarter way?
Thanks in advance.