I am trying to use some array functions like UBound, LBound. But the script doesn't seem to recognize them. Please see the below code:
TestArray = Split(sourcePath,"\")
MsgBox "size is " & UBound(TestArray)
I get the message box without the size. the value of source path is the path of the folder selected. even if the path is hard coded the Ubound doesn't seem to respond. Please point me where I am missing things.
-Arch