AD_Taylor
Well-known Member
- Joined
- May 19, 2011
- Messages
- 687
Lets say in A1 I have a formula that has been array entered (Ctrl + Shift + Enter).
I want to copy this formula to Cell B1 but update the cell references etc. and to do this copy within VBA code.
Can I just use something like:
?
As I'm assuming that would copy the formula but not update the references?
I want to copy this formula to Cell B1 but update the cell references etc. and to do this copy within VBA code.
Can I just use something like:
Code:
Range("B1").Formula = Range("A1").Formula
?
As I'm assuming that would copy the formula but not update the references?