Copy Name Range in single Cell
If your data reside in only one column and the name of the range is fro,
try this one. but this one doesn't work if your data reside in multiple
columns.
Sub test()
Dim arr
arr = Application.Transpose(Range("fro"))
Range("fro").Offset(0, 1).Resize(1, 1) = join(arr, ",")
End Sub
keiji
Dhimant wrote:
Hi,
I had create a NameRange from Insert Define Name
That is fro say from a1:a5
Now I want to copy all a1:a5 in cell B1.
Can any one halp me?
Thanks in advance
|