SmokeEater
Technical User
I have this code
which very nicely prints my array in the immediate window. My problem is that I would like to print this array on a report. I'm stumped. Any help would be appreciated.
Code:
Sub DisplayArray(InArray() As String)
Dim i As Integer, j As Integer
For i = LBound(InArray, 1) To UBound(InArray, 1)
For j = LBound(InArray, 2) To UBound(InArray, 2)
Debug.Print InArray(i, j),
Next j
Debug.Print
Next i
End Sub