Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
 
Posts: n/a
Default How to avoid name ref in formula?

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?
  #2   Report Post  
Posted to microsoft.public.excel.misc
ufo_pilot
 
Posts: n/a
Default How to avoid name ref in formula?

You could eliminate it all together
Insert Name Define
select the name that bothers you, and delete it from the defined list

" wrote:

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?

  #3   Report Post  
Posted to microsoft.public.excel.misc
 
Posts: n/a
Default How to avoid name ref in formula?

"ufo_pilot" wrote:
You could eliminate it all together Insert Name Define
select the name that bothers you, and delete it from
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.
  #4   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default How to avoid name ref in formula?

Jim Rech posted a nice response at:
http://groups.google.com/groups?thre...%40tkmsftngp03

From: Jim Rech )
Subject: Can I "De-Name" 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:

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?


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
"Unable to set the Formula property of the Series class" with a tw PeterQ Charts and Charting in Excel 1 February 15th 06 07:37 PM
Dynamic Range with unused formula messing up x axis on dynamic graph [email protected] Charts and Charting in Excel 2 February 2nd 06 08:02 PM
when dragging formula how do i avoid #DIV/0! derwood Excel Discussion (Misc queries) 3 November 5th 05 07:44 AM
adding row to forumla carrera Excel Discussion (Misc queries) 9 August 23rd 05 10:24 PM
Need formula to avoid ":" in cells with tt:mm morgan Excel Worksheet Functions 2 November 19th 04 09:25 AM


All times are GMT +1. The time now is 05:18 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"