Let's say I name cell C4 as "TestCell", using NameManager or typing into the Name Box.
I want C5 to have a formula to return "TestCell" without the quotes.
I'll take VBA answer if that's necessary for this.
Let's say I name cell C4 as "TestCell", using NameManager or typing into the Name Box.
I want C5 to have a formula to return "TestCell" without the quotes.
I'll take VBA answer if that's necessary for this.
This is what I was looking for, about a few hours of digging: How do you get a Range to return its Name?
use the .Name.Name method worked for me (using one .name gives only address).
Good luck!