Changing Named Cells

JenkinsM82

New Member
Joined
May 17, 2018
Messages
9
Part of a VBA script I use checks the value of a cell and then deletes the name of the cell if it's False. Here is what I have that works great:
Code:
For Each cell In Range("Selected")
     If cell.Value = "False" Then
     cell.Name.Delete

Instead of deleting that name, how can I change the name? Ideally, I'd love to name the cell to the value of the cell to the right.

Any help would be appreciated!!
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Try
Code:
cell.Name.Delete
cell.Name = cell.Offset(, 1).Value
 
Upvote 0
What is the value in the cell to the right?
 
Upvote 0
I think that fixed my issue. I had a * in the value of the next field and it wasn't happy about that.

Thanks for your help!
 
Upvote 0

Forum statistics

Threads
1,215,528
Messages
6,125,338
Members
449,218
Latest member
Excel Master

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