Is there a way to change a defined name globally in excel…(across multiple worksheets)
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Defined Name (XP)
Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » Defined Name (XP)
- This topic has 14 replies, 5 voices, and was last updated 20 years, 8 months ago.
AuthorTopicWSLizardLips
AskWoody LoungerSeptember 15, 2004 at 2:45 pm #409953Viewing 5 reply threadsAuthorReplies-
WSsdckapr
AskWoody LoungerSeptember 15, 2004 at 2:52 pm #877481Not sure what you mean exactly.
By default all names are “global” (across multiple worksheets)
You can make a “local” name (within a particular worksheet) by prefacing it with the sheetname when you are inserting the name:
Sheet1!MyNameto define MyName to a range/formula.
You can (in another sheet) enter:
MyNameas a name and it will be “global” (except for sheet1, since that has a local copy of that name) and usable by all other sheets.
Steve
-
WSLizardLips
AskWoody Lounger -
WSLizardLips
AskWoody Lounger -
WSrory
AskWoody LoungerSeptember 15, 2004 at 3:13 pm #877501If you want the name (of the name) to change but keep what it refers to the same, you could use something like:
Sub ChangeNames() Dim strOldName As String, strNewName As String Dim wks As Worksheet strOldName = "Smith03" strNewName = "Smith04" For Each wks In ActiveWorkbook.Worksheets With wks .Names.Add strNewName, .Names(strOldName).RefersTo .Names(strOldName).Delete End With Next wks End Sub
Hope that helps.
-
WSrory
AskWoody LoungerSeptember 15, 2004 at 3:13 pm #877502If you want the name (of the name) to change but keep what it refers to the same, you could use something like:
Sub ChangeNames() Dim strOldName As String, strNewName As String Dim wks As Worksheet strOldName = "Smith03" strNewName = "Smith04" For Each wks In ActiveWorkbook.Worksheets With wks .Names.Add strNewName, .Names(strOldName).RefersTo .Names(strOldName).Delete End With Next wks End Sub
Hope that helps.
-
WSsdckapr
AskWoody LoungerSeptember 15, 2004 at 3:18 pm #877504Something like this?
Option Explicit Sub ChangeNames() Dim nm As Name Dim sOld As String Dim sNew As String sOld = "smith03" sNew = "o4" For Each nm In ActiveWorkbook.Names If nm.Name = sOld Then ActiveWorkbook.Names.Add _ Name:=sNew, _ RefersTo:=nm.RefersTo nm.Delete End If Next End Sub
Note: this will only change global names, local names are prefaced with sheetname so you would have to loop thru each sheetname to find all of them.
Steve
-
WSsdckapr
AskWoody LoungerSeptember 15, 2004 at 3:18 pm #877505Something like this?
Option Explicit Sub ChangeNames() Dim nm As Name Dim sOld As String Dim sNew As String sOld = "smith03" sNew = "o4" For Each nm In ActiveWorkbook.Names If nm.Name = sOld Then ActiveWorkbook.Names.Add _ Name:=sNew, _ RefersTo:=nm.RefersTo nm.Delete End If Next End Sub
Note: this will only change global names, local names are prefaced with sheetname so you would have to loop thru each sheetname to find all of them.
Steve
-
WSpieterse
AskWoody LoungerSeptember 16, 2004 at 5:39 am #877766The other guys gave you some code to change the name itself. Alas there is (as yet) no utility that can rename the names everywhere they are used.
You might try using my flexfind utility.
Make sure you check the “objects” box if you need to search in other things besides cells.Be careful though, flexfind does not check whether the name is really cleanly found. If you search for “Name1”, it will also find “Name11”, “Name12” or “Name1w”.
So if you are planning to do a S&R, make sure you check and acknowledge each and every occurrence. -
WSpieterse
AskWoody LoungerSeptember 16, 2004 at 5:39 am #877767The other guys gave you some code to change the name itself. Alas there is (as yet) no utility that can rename the names everywhere they are used.
You might try using my flexfind utility.
Make sure you check the “objects” box if you need to search in other things besides cells.Be careful though, flexfind does not check whether the name is really cleanly found. If you search for “Name1”, it will also find “Name11”, “Name12” or “Name1w”.
So if you are planning to do a S&R, make sure you check and acknowledge each and every occurrence.
-
-
WSsdckapr
AskWoody LoungerSeptember 15, 2004 at 2:52 pm #877482Not sure what you mean exactly.
By default all names are “global” (across multiple worksheets)
You can make a “local” name (within a particular worksheet) by prefacing it with the sheetname when you are inserting the name:
Sheet1!MyNameto define MyName to a range/formula.
You can (in another sheet) enter:
MyNameas a name and it will be “global” (except for sheet1, since that has a local copy of that name) and usable by all other sheets.
Steve
WSsdckapr
AskWoody LoungerSeptember 15, 2004 at 3:04 pm #877489If you are looking for a way to create the same local name on each sheet and have it refer to a cell on that local sheet, here is an example:
Option Explicit Sub CreateLocalNames() Dim wks As Worksheet Dim sName As String Dim sRefersTo As String sName = "Bill" sRefersTo = "$A$15" For Each wks In Worksheets ActiveWorkbook.Names.Add _ Name:="'" & wks.Name & "'!" & sName, _ RefersTo:="='" & wks.Name & "'!" & sRefersTo Next End Sub
It will create the named range “Bill” and it will refer to cell A15 of the sheet it is called on. You could have “Bill” also be different for each sheet if desired.
Steve
WSsdckapr
AskWoody LoungerSeptember 15, 2004 at 3:04 pm #877490If you are looking for a way to create the same local name on each sheet and have it refer to a cell on that local sheet, here is an example:
Option Explicit Sub CreateLocalNames() Dim wks As Worksheet Dim sName As String Dim sRefersTo As String sName = "Bill" sRefersTo = "$A$15" For Each wks In Worksheets ActiveWorkbook.Names.Add _ Name:="'" & wks.Name & "'!" & sName, _ RefersTo:="='" & wks.Name & "'!" & sRefersTo Next End Sub
It will create the named range “Bill” and it will refer to cell A15 of the sheet it is called on. You could have “Bill” also be different for each sheet if desired.
Steve
WSJohnBF
AskWoody LoungerSeptember 15, 2004 at 3:08 pm #877497As a footnote to Steve’s explanation, if you have a series of sheet-local names that are the same (Sheet1!MySameName, Sheet2!MySameName, Sheet3!MySameName, etc.) you should find MS Excel MVP Jan-Karel Pieterse‘s Name Manager of use.
WSJohnBF
AskWoody LoungerSeptember 15, 2004 at 3:08 pm #877498As a footnote to Steve’s explanation, if you have a series of sheet-local names that are the same (Sheet1!MySameName, Sheet2!MySameName, Sheet3!MySameName, etc.) you should find MS Excel MVP Jan-Karel Pieterse‘s Name Manager of use.
Viewing 5 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Phishers extract Millions from HMRC accounts..
by
Microfix
6 hours, 26 minutes ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
8 hours, 18 minutes ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
11 hours, 27 minutes ago -
Mystical Desktop
by
CWBillow
11 hours, 40 minutes ago -
Meta and Yandex secretly tracked billions of Android users
by
Alex5723
6 hours, 27 minutes ago -
MS-DEFCON 2: Do you need that update?
by
Susan Bradley
1 hour, 51 minutes ago -
CD/DVD drive is no longer recognized
by
WSCape Sand
1 day, 2 hours ago -
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
1 day, 5 hours ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
1 day, 3 hours ago -
What is wrong with simple approach?
by
WSSpoke36
20 hours, 20 minutes ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
1 day, 15 hours ago -
Location, location, location
by
Susan Bradley
5 hours, 39 minutes ago -
Cannot get a task to run a restore point
by
CWBillow
1 day, 16 hours ago -
Frustrating search behavior with Outlook
by
MrJimPhelps
1 day, 7 hours ago -
June 2025 Office non-Security Updates
by
PKCano
2 days, 3 hours ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
5 hours, 59 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
2 days, 3 hours ago -
How start headers and page numbers on page 3?
by
Davidhs
2 days, 13 hours ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
1 day, 16 hours ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
2 days, 22 hours ago -
Windows 11 Insider Preview build 26120.4230 (24H2) released to BETA
by
joep517
2 days, 22 hours ago -
MS Excel 2019 Now Prompts to Back Up With OneDrive
by
lmacri
2 days, 12 hours ago -
Firefox 139
by
Charlie
2 days, 4 hours ago -
Who knows what?
by
Will Fastie
1 day, 7 hours ago -
My top ten underappreciated features in Office
by
Peter Deegan
2 days, 23 hours ago -
WAU Manager — It’s your computer, you are in charge!
by
Deanna McElveen
16 hours, 45 minutes ago -
Misbehaving devices
by
Susan Bradley
1 day, 18 hours ago -
.NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer
by
WSmeyerbos
4 days, 5 hours ago -
Neowin poll : What do you plan to do on Windows 10 EOS
by
Alex5723
1 day, 3 hours ago -
May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band
by
Alex5723
4 days, 3 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.