XL97: Cannot Paste Array Formula in Its Original CellID: Q158080
|
When you run a Visual Basic for Applications macro in Microsoft Excel 97, you may receive the following error message:
Or when you manually paste a copied cell in Microsoft Excel 97, you may receive the following error message:Run-time error '1004':
You cannot change part of an array.
You cannot change part of an array.
This will occur if you copy (either manually or through a macro) a cell
that contains an array formula and then attempt to paste the copied formula
into a range of cells that also includes the original cell. For example,
you copy cell A1 and then attempt to paste it to cells A1 through A10.
This behavior is by design of Microsoft Excel.
If you manually copy and paste a formula that is part of an array, use the
following steps to copy and paste the formula without receiving an error
message:
http://www.microsoft.com/support/supportnet/refguide/To prevent this problem from occurring when you copy and paste the formula with a macro, you should perform the following steps in your macro:
Sub CopyArrayFormula()
'stores formula in variable
xFormula = Range("A1").Formula
'clears formula from cell
Range("A1").Clear
'applies formula
Range("A1:A10").FormulaArray = xFormula
End Sub
In Microsoft Excel, array formulas are a special type of formula that allow
you to perform a large number of calculations in a single cell. When you
want to enter a formula as an array formula, instead of just pressing
ENTER, you press CTRL+SHIFT+ENTER.
In earlier versions of Microsoft Excel, it is possible for you or a Visual
Basic macro to paste a copied array formula in a range of cells that
includes the original copied cell.
In Microsoft Excel 97, this will not work unless you first clear the
original cell, or convert it into a normal formula. This behavior is
actually correct: the behavior of earlier versions of Microsoft Excel is
incorrect.
Additional query words: XL97 8.00
Keywords : kberrmsg kbprg kbualink97 kbdta KbVBA
Version : WINDOWS:
Platform : WINDOWS
Issue type :
Last Reviewed: July 2, 1999