
Object array to string array
Hello
How can I do this?
Dim objArr as object(,) = {{1,2,3,4},{5,6,7,8}}
dim strArr as string(,)
'this next line I cannot compile - "specified cast is not valid"
strArr = ctype(objArr, string(,))
I've tried other methods, but no success
PS - In the real case, the 2D object array is
objArr = myXLSheet.range("A1").currentregion.value
Thanks
Mark