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, 9 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
-
AMD : Out of Bounds (OOB) read vulnerability in TPM 2.0 CVE-2025-2884
by
Alex5723
1 hour, 15 minutes ago -
Totally remove or disable BitLocker
by
CWBillow
8 minutes ago -
Windows 10 gets 6 years of ESU?
by
n0ads
16 minutes ago -
Apple, Google stores still offer China-based VPNs, report says
by
Nibbled To Death By Ducks
12 hours, 1 minute ago -
Search Forums only bring up my posts?
by
Deo
12 hours, 15 minutes ago -
Windows Spotlight broken on Enterprise and Pro for Workstations?
by
steeviebops
23 hours, 43 minutes ago -
Denmark wants to dump Microsoft for Linux + LibreOffice
by
Alex5723
16 hours, 20 minutes ago -
How to get Microsoft Defender to honor Group Policy Setting
by
Ralph
1 day ago -
Apple : Paragon’s iOS Mercenary Spyware Finds Journalists Target
by
Alex5723
1 day, 10 hours ago -
Music : The Rose Room – It’s Been A Long, Long Time album
by
Alex5723
1 day, 11 hours ago -
Disengage Bitlocker
by
CWBillow
1 day, 1 hour ago -
Mac Mini M2 Service Program for No Power Issue
by
Alex5723
1 day, 13 hours ago -
New Win 11 Pro Geekom Setup questions
by
Deo
12 hours, 10 minutes ago -
Windows 11 Insider Preview build 26200.5651 released to DEV
by
joep517
1 day, 20 hours ago -
Windows 11 Insider Preview build 26120.4441 (24H2) released to BETA
by
joep517
1 day, 20 hours ago -
iOS 26,, MacOS 26 : Create your own AI chatbot
by
Alex5723
2 days ago -
New PC transfer program recommendations?
by
DaveBoston
5 hours, 41 minutes ago -
Windows 11 Insider Preview Build 22631.5545 (23H2) released to Release Preview
by
joep517
2 days, 4 hours ago -
Windows 10 Build 19045.6029 (22H2) to Release Preview Channel
by
joep517
2 days, 4 hours ago -
Best tools for upgrading a Windows 10 to an 11
by
Susan Bradley
1 day, 17 hours ago -
The end of Windows 10 is approaching, consider Linux and LibreOffice
by
Alex5723
21 hours, 14 minutes ago -
Extended Windows Built-in Disk Cleanup Utility
by
bbearren
1 day, 6 hours ago -
Win 11 24H2 June 2025 Update breaks WIFI
by
dportenlanger
2 days, 23 hours ago -
Update from WinPro 10 v. 1511 on T460p?
by
CatoRenasci
1 day, 21 hours ago -
System Restore and Updates Paused
by
veteran
3 days, 2 hours ago -
Windows 10/11 clock app
by
Kathy Stevens
2 days, 13 hours ago -
Turn off right-click draw
by
Charles Billow
3 days, 5 hours ago -
Introducing ChromeOS M137 to The Stable Channel
by
Alex5723
3 days, 9 hours ago -
Brian Wilson (The Beach Boys) R.I.P
by
Alex5723
15 hours, 46 minutes ago -
Master patch listing for June 10, 2025
by
Susan Bradley
3 days, 10 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.