hello I am trying to define cells name by cells value I have tried activecell.name = activecell.value

tahir573

New Member
Joined
Dec 31, 2008
Messages
44
hello I am trying to define cells name by cells value I have tried activecell.name = activecell.value
but I want more than one cell to define I am trying selection.cells.name = selection.cells.value
I want every cell in selection sets it's name by it's value also i am trying to select a range and
define it's name by it's value please help me.
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
If you want to name individual cells then you need to loop thru the cells:

Code:
For Each cell in Range("A1:A10")
  cell.Name = cell.Value
Next

Note that the above does not handle errors (eg caused by invalid names).
 
Upvote 0
If you want name the multiple cell...

1) select then range
2) [Define name] - [Create from selection] - [left column]
 
Upvote 0
thanx jindon selection.cells(1).value works great to define a range name but i can't understand your second trick i am using excel 2002 and i can't see creat from selection any help by the way thanx again bro
 
Upvote 0
thanx richard it perfectly worked for me; i used " For Each cell In Selection " not range("a1:a10") thanx again bro
 
Upvote 0
thanx for jindon and richard they solved my problem i have 51 of cells and 24 ranges which i have to define a name for importing and exporting data from sheet to sheet well i am working on my project need regards from my seniors anyway thanx to richard and jindon keep it up bros;)
 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,019
Members
448,938
Latest member
Aaliya13

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top