Answers for "get name of a range vba"

VBA
1

get name of a range vba

'For a Range, Name isn t a string it s a Name object
'that you then take the Name property of to get the string

MsgBox sampleRange.Name.Name
Posted by: Guest on September-26-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language