Decoupling cells and formulae

H

Henrik

If a formula refers to a cell and the content of that cell is moved then the
formula updates to refer to the destination cell.

Is it possible to somehow decouple this functionality so that a formula does
not change if the content of precedent cells is moved?
 
B

Bob Phillips

=INDIRECT(A1)

in its simplest form

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
E

Earl Kiosterud

Henrik,

In a word, No. Excel changes cell references regardless of how the cell was
moved (edge-dragged, Cut/Pasted, or as a result of inserting/deleting
cells). Making it absolute ($A$1) has no effect -- that affects only
copying. You can use:

INDIRECT("A1") in place of A1 in your formulas. Do include the quote marks.
 
H

Henrik

Thanks, Earl. The quotation marks did it.

Earl Kiosterud said:
Henrik,

In a word, No. Excel changes cell references regardless of how the cell was
moved (edge-dragged, Cut/Pasted, or as a result of inserting/deleting
cells). Making it absolute ($A$1) has no effect -- that affects only
copying. You can use:

INDIRECT("A1") in place of A1 in your formulas. Do include the quote marks.
 
Top