4
1
I have one row that uses =MEAN(A1:A15)
, and another one that uses =SUM(A1:A15)
. But many times I have to alter this range to, let's say, A1:A13;A15
in both cells. I would like to alter the range in one place and have both formulas to use the same updated range.
Now I realized I need the inverse function too. Is there any
STRINGIFY(A1:A15)
which would return"A1:A15"
? – Jader Dias – 2011-07-28T13:54:06.0031You can set a cell equal to
="A1:A15"
if you'd like. You can also use the&
operator to join strings, so if for example if you wanted to return the range of all entries in the A column, you could make the string as="A1:A" & COUNTA(A:A)
. Note that you could also just place that right as the argument of theINDIRECT
formula, instead of referencing another cell. – Breakthrough – 2011-07-28T13:56:31.317Thanks, but I mean http://superuser.com/questions/316224/how-to-make-many-column-formulas-ignore-the-same-lines-in-excel
– Jader Dias – 2011-07-28T14:05:13.260@Jader Dias also posted an answer there for you. – Breakthrough – 2011-07-28T14:52:44.077