using named ranges in a function but range name is in a cell
Posted by steve w on August 13, 2001 8:11 PM
Maybe someone can help
I'm trying to see some text as a range name so I can use it in a formula.
Not sure if something exist already so I'm trying to make my own function.
I have some named ranges that start with the first 2 letters of the product and end with (PR)
Any ideas
Thanks steve w
Function TEXT_RANGE(TNAME) As String
TEXT_RANGE= Left(Range("TNAME"), 2)& PR
End Function