I have a two dimensional array of strings:
Dim testArray(3, 3) as string
I need to pass this to a function.
I've tried every combination of syntax possible for passing this to a function to no avail.
Function analyzeCell(ByRef currentArray(,) as String) gives "Expected
"
Function analyzeCell(ByRef currentArray as String(,) gives "Expected: list separator or )"
Dim testArray(3, 3) as string
I need to pass this to a function.
I've tried every combination of syntax possible for passing this to a function to no avail.
Function analyzeCell(ByRef currentArray(,) as String) gives "Expected

Function analyzeCell(ByRef currentArray as String(,) gives "Expected: list separator or )"