While I am writing a formula, I move the cursor to a
cell that I want to reference in the formula. Usually,
that gives me a relative reference (e.g. A10), and I
can use F4 to cycle through alternative forms ($A$10,
A$10,$A10).
But if the referenced cell is named, Excel uses the
name for the reference, and F4 does not change it.
How can I replace the name with a relative reference
without having to enter it manually?
You could eliminate it all together
Insert gt; Namegt; Define
select the name that bothers you, and delete it from the defined list
quot; wrote:
gt; While I am writing a formula, I move the cursor to a
gt; cell that I want to reference in the formula. Usually,
gt; that gives me a relative reference (e.g. A10), and I
gt; can use F4 to cycle through alternative forms ($A$10,
gt; A$10,$A10).
gt;
gt; But if the referenced cell is named, Excel uses the
gt; name for the reference, and F4 does not change it.
gt;
gt; How can I replace the name with a relative reference
gt; without having to enter it manually?
quot;ufo_pilotquot; wrote:
gt; You could eliminate it all together Insert gt; Namegt; Define
gt; select the name that bothers you, and delete it from
gt; the defined list
It should be obvious that that is not what I want to do.
The cell is named for other purposes, of course.
Jim Rech posted a nice response at:
groups.google.com/groups?thre...@tkmsftngp03
From: Jim Rech )
Subject: Can I quot;De-Namequot; Formula Cell References?
Newsgroups: microsoft.public.excel.misc, microsoft.public.excel
Date: 2001-02-16 13:32:51 PST
To do it to a cell or two first turn on Transition Formula Entry under
Tools, Options, Transition. Then go to the cell and press F2 and Enter.
When you turn off TFE the formula references should be de-named.
If you have a lot of cells to de-name select the range and run this macro:
Sub Dename()
Dim Cell As Range
ActiveSheet.TransitionFormEntry = True
For Each Cell In Selection.SpecialCells(xlFormulas)
Cell.Formula = Cell.Formula
Next
ActiveSheet.TransitionFormEntry = False
End Sub
--
Jim Rech
Excel MVP
wrote:
gt;
gt; While I am writing a formula, I move the cursor to a
gt; cell that I want to reference in the formula. Usually,
gt; that gives me a relative reference (e.g. A10), and I
gt; can use F4 to cycle through alternative forms ($A$10,
gt; A$10,$A10).
gt;
gt; But if the referenced cell is named, Excel uses the
gt; name for the reference, and F4 does not change it.
gt;
gt; How can I replace the name with a relative reference
gt; without having to enter it manually?
--
Dave Peterson
- Dec 25 Tue 2007 20:41
How to avoid name ref in formula?
close
全站熱搜
留言列表
發表留言