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:
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!!
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!!