Is there anyway to convert a string value to a Range object ? I\'m having a function which takes a Range object as a argument and need to pass a single string parameter to it
This simple function will convert string arguments into a range object, usable in other excel functions.
Function TXT2RNG(text) As Variant Set TXT2RNG = Range(text) End Function