Mathcad Prime 8 API - Passing an array of strings from Mcad to Excel Hi allI am using Visual Basic for Application in Excel and am trying to pass an array of strings from Excel to Prime 8 through the API. I have managed to pass a matrix/array of numbers, but if I change the matrix content to strings, the OutputGetMatrixValue object fails with Errorcode = 7, suggesting "Matrix result is invalid." See Figure.png and below code. It appears not possible from the help documentation, see Figure2.png. Alternatively, I could convert the strings to unicode numbers, and then pass them to Excel through the below code, and then convert them back to strings. Or use a text file? Any suggestions for the easiest way forward? 'Get a matrix valueSet out2 = ws.OutputGetMatrixValue("out2")Dim q As VariantRowCount = out2.MatrixResult.RowscolCount = out2.MatrixResult.ColumnsReDim q(RowCount - 1, colCount - 1)For i = 0 To RowCount - 1For j = 0 To colCount - 1d = out2.MatrixResult.GetMatrixElement(i, j, dblhere)q(i, j) = dblhereDebug.Print "q(" & i & ","