Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 187
Default remove named ranges from formulas??

I have a workbook that has a lot of formulas that use named ranges.
Is there a way to remove the named ranges and have the formulas show
conventional cell references?

Not sure if there is an option in Excel or this requires a macro? I'm
using XL 03.

Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,346
Default remove named ranges from formulas??

Hi,

Range names are good things, that said, if you delete the range names all
your formulas will return errors.

You can use the Replace command to replace all references to a name with its
address. With a lot of range names you should consider a VBA macro.

Cheers,
Shane Devenshire


"Dave F" wrote:

I have a workbook that has a lot of formulas that use named ranges.
Is there a way to remove the named ranges and have the formulas show
conventional cell references?

Not sure if there is an option in Excel or this requires a macro? I'm
using XL 03.

Thanks.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default remove named ranges from formulas??

I'd do this against a copy of the file...

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

====
Be aware that any reference to those names in your code will be broken.

Dave F wrote:

I have a workbook that has a lot of formulas that use named ranges.
Is there a way to remove the named ranges and have the formulas show
conventional cell references?

Not sure if there is an option in Excel or this requires a macro? I'm
using XL 03.

Thanks.


--

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
Formulas in arrays and named ranges Babymech Excel Discussion (Misc queries) 2 July 21st 08 04:16 PM
Named Ranges in Array Formulas jfitzpat Excel Worksheet Functions 2 May 20th 08 11:34 PM
Data Validation 2003, Named Ranges/Formulas Lisa Excel Worksheet Functions 1 January 21st 08 07:00 PM
building formulas that change frequently using named cell ranges Sheldon Excel Worksheet Functions 4 December 6th 07 04:35 PM
Named ranges interfere with simple formulas RoyWollen Excel Discussion (Misc queries) 2 September 30th 06 10:53 PM


All times are GMT +1. The time now is 07:35 PM.

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

About Us

"It's about Microsoft Excel"