SmokeEater
Technical User
I have created a multidimensional array and want to either output it to a report or form. I have found code to display one dimensional code in the immediate window but can't get it to work for multi dimensions.
Thanks for the help
Code:
Sub DisplayArray(InArray() As String)
Dim i As Integer
For i = 1 To UBound(InArray)
Debug.Print InArray(i)
Next i
End Sub
Thanks for the help