Rename a range .

  • Thread starter Thread starter LAB
  • Start date Start date
L

LAB

Can someone please tell me, how to change a range name, using Microsoft 2007
please ?
 
To change a name from alpha to beta:

Sub RenameIt()
Set r = Range("alpha")
Range("alpha").Name.Delete
r.Name = "beta"
End Sub
 
Go To Formulas Tab

Click on Name Manager

Click on Range Name you wish to change

Click the edit button

Change name to what you want

Click OK to finish
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top