Does anyone have an example on adding a column in an array with say, 3 columns. My array is 14 rows with 3 columns and I cannot get it to work. Here is my code. The column I want to add is the 2nd column, or #1 since I'm using 0 to 2.
thanks!


Private Sub mnuReportsHighIncomeReport_Click()

Dim curRowTotal As Currency
Dim intRowIndex As Integer
Dim curIncomeTotal As Currency

For intRowIndex = 0 To 13

curIncomeTotal = curIncomeTotal + mintDataArray(intRowIndex, 1)

Next intRowIndex
Print mintDataArray(mintCurrentRow, 1)

End Sub