View Single Post
  #5   Report Post  
Myrna Larson
 
Posts: n/a
Default

Interesting approach! I wonder if the OP could solve his problem by changing
the Formula Entry setting, then use Edit/Replace to replace an equal sign with
an equal sign, thus effectively re-entering all formulas.


On Thu, 21 Apr 2005 15:15:18 -0500, Dave Peterson
wrote:

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

hk29 wrote:

Does anyone know of a way to reverse the name function and have all the
original cell references appear in the workbook, instead of the names?

Just
wondering.