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
-
Woody
by
Scott
3 hours, 26 minutes ago -
24H2 has suppressed my favoured spider
by
Davidhs
3 hours, 28 minutes ago -
GeForce RTX 5060 in certain motherboards could experience blank screens
by
Alex5723
17 hours, 38 minutes ago -
MS Office 365 Home on MAC
by
MickIver
11 hours, 27 minutes ago -
Google’s Veo3 video generator. Before you ask: yes, everything is AI here
by
Alex5723
1 day, 7 hours ago -
Flash Drive Eject Error for Still In Use
by
J9438
1 day, 9 hours ago -
Windows 11 Insider Preview build 27863 released to Canary
by
joep517
2 days, 2 hours ago -
Windows 11 Insider Preview build 26120.4161 (24H2) released to BETA
by
joep517
2 days, 2 hours ago -
AI model turns to blackmail when engineers try to take it offline
by
Cybertooth
1 day, 6 hours ago -
Migrate off MS365 to Apple Products
by
dmt_3904
1 day, 7 hours ago -
Login screen icon
by
CWBillow
21 hours, 24 minutes ago -
AI coming to everything
by
Susan Bradley
6 hours, 45 minutes ago -
Mozilla : Pocket shuts down July 8, 2025, Fakespot shuts down on July 1, 2025
by
Alex5723
2 days, 18 hours ago -
No Screen TurnOff???
by
CWBillow
2 days, 18 hours ago -
Identify a dynamic range to then be used in another formula
by
BigDaddy07
2 days, 19 hours ago -
InfoStealer Malware Data Breach Exposed 184 Million Logins and Passwords
by
Alex5723
3 days, 6 hours ago -
How well does your browser block trackers?
by
n0ads
2 days, 17 hours ago -
You can’t handle me
by
Susan Bradley
15 hours, 49 minutes ago -
Chrome Can Now Change Your Weak Passwords for You
by
Alex5723
2 days, 9 hours ago -
Microsoft: Over 394,000 Windows PCs infected by Lumma malware, affects Chrome..
by
Alex5723
3 days, 18 hours ago -
Signal vs Microsoft’s Recall ; By Default, Signal Doesn’t Recall
by
Alex5723
2 days, 21 hours ago -
Internet Archive : This is where all of The Internet is stored
by
Alex5723
3 days, 18 hours ago -
iPhone 7 Plus and the iPhone 8 on Vantage list
by
Alex5723
3 days, 18 hours ago -
Lumma malware takedown
by
EyesOnWindows
3 days, 6 hours ago -
“kill switches” found in Chinese made power inverters
by
Alex5723
4 days, 3 hours ago -
Windows 11 – InControl vs pausing Windows updates
by
Kathy Stevens
4 days, 3 hours ago -
Meet Gemini in Chrome
by
Alex5723
4 days, 7 hours ago -
DuckDuckGo’s Duck.ai added GPT-4o mini
by
Alex5723
4 days, 7 hours ago -
Trump signs Take It Down Act
by
Alex5723
4 days, 15 hours ago -
Do you have a maintenance window?
by
Susan Bradley
2 days, 20 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.