Array output help...

Juggler_IN

Active Member
Joined
Nov 19, 2014
Messages
349
Office Version
  1. 2003 or older
Platform
  1. Windows
I have code to print a 3d array as 2d array to a range. With the sample test array the output is:

135
7911
131517
246
81012
141618

But, my requirement is:

123
456
789
101112
131415
161718

I have not been able to figure out the modification. Any help is appreciated.

VBA Code:
Sub Print3DArrayToRange(arr As Variant, ws As Worksheet, startCell As Range)
    Dim x As Long, y As Long, z As Long
    Dim rowOffset As Long
    For z = LBound(arr, 3) To UBound(arr, 3)
        rowOffset = (z - LBound(arr, 3)) * (UBound(arr, 1) - LBound(arr, 1) + 1)
        For y = LBound(arr, 2) To UBound(arr, 2)
            For x = LBound(arr, 1) To UBound(arr, 1)
                ws.Cells(startCell.Row + rowOffset + x - LBound(arr, 1), startCell.Column + y - LBound(arr, 2)) = arr(x, y, z)
            Next x
        Next y
    Next z
End Sub
Sub Test()
    ReDim x(2&, 2&, 1&) As Integer
    x(0&, 0&, 0&) = 1&
    x(0&, 0&, 1&) = 2&
    x(0&, 1&, 0&) = 3&
    x(0&, 1&, 1&) = 4&
    x(0&, 2&, 0&) = 5&
    x(0&, 2&, 1&) = 6&
    ' ---
    x(1&, 0&, 0&) = 7&
    x(1&, 0&, 1&) = 8&
    x(1&, 1&, 0&) = 9&
    x(1&, 1&, 1&) = 10&
    x(1&, 2&, 0&) = 11&
    x(1&, 2&, 1&) = 12&
    ' ---
    x(2&, 0&, 0&) = 13&
    x(2&, 0&, 1&) = 14&
    x(2&, 1&, 0&) = 15&
    x(2&, 1&, 1&) = 16&
    x(2&, 2&, 0&) = 17&
    x(2&, 2&, 1&) = 18&

    Print3DArrayToRange x, Sheets("Output"), Range("L15")

End Sub
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Did you step through that and watch your variables? On the 2nd pass, arr(x, y, z) is 1,0,0 -
which you have defined as 7 --->> x(1&, 0&, 0&) = 7& and you are offsetting by rows so 7 comes underneath 1. Probably the easiest would be to rearrange your array? Changing your offset to columns first won't fix it.
 
Upvote 0
This debug.print would show you what order arr(x,y,z) is being used
1
7
13
3
9
15
5
11
17
2
8
14
4
10
16
6
12
18
 
Upvote 0
Here's a more robust output in case it helps.
Iteration: 1 - 0,0,0 Array: 1
Iteration: 2 - 1,0,0 Array: 7
Iteration: 3 - 2,0,0 Array: 13
Iteration: 4 - 0,1,0 Array: 3
Iteration: 5 - 1,1,0 Array: 9
Iteration: 6 - 2,1,0 Array: 15
Iteration: 7 - 0,2,0 Array: 5
Iteration: 8 - 1,2,0 Array: 11
Iteration: 9 - 2,2,0 Array: 17
Iteration: 10 - 0,0,1 Array: 2
Iteration: 11 - 1,0,1 Array: 8
Iteration: 12 - 2,0,1 Array: 14
Iteration: 13 - 0,1,1 Array: 4
Iteration: 14 - 1,1,1 Array: 10
Iteration: 15 - 2,1,1 Array: 16
Iteration: 16 - 0,2,1 Array: 6
Iteration: 17 - 1,2,1 Array: 12
Iteration: 18 - 2,2,1 Array: 18
 
Upvote 0
Hi @Juggler_IN. Thanks for posting on the forum.

The third array is stored 2 by 2. So it is recommended to read all the values and arrange them 3 by 3.
That is, read the values, store the first three values in the first row, read another three values and put them in the next row, and so on.
1681441533704.png



The code could be like this:
VBA Code:
Sub Print3DArrayToRange(arr As Variant, ws As Worksheet, startCell As Range)
  Dim x As Long, y As Long, z As Long, i As Long, j As Long
  ReDim a(1 To ((UBound(arr, 1) + 1) * (UBound(arr, 2) + 1) * (UBound(arr, 3) + 1)) / 3, 1 To 3)
  i = 1
  j = 1
  For x = LBound(arr, 1) To UBound(arr, 1)
    For y = LBound(arr, 2) To UBound(arr, 2)
      For z = LBound(arr, 3) To UBound(arr, 3)
        a(i, j) = arr(x, y, z)
        j = j + 1
        If j = 4 Then
          j = 1
          i = i + 1
        End If
      Next
    Next
  Next
  startCell.Resize(UBound(a, 1), UBound(a, 2)).Value = a
End Sub

Sub Test()
  ReDim x(2&, 2&, 1&) As Integer
  x(0&, 0&, 0&) = 1&
  x(0&, 0&, 1&) = 2&
  x(0&, 1&, 0&) = 3&
  x(0&, 1&, 1&) = 4&
  x(0&, 2&, 0&) = 5&
  x(0&, 2&, 1&) = 6&
  ' ---
  x(1&, 0&, 0&) = 7&
  x(1&, 0&, 1&) = 8&
  x(1&, 1&, 0&) = 9&
  x(1&, 1&, 1&) = 10&
  x(1&, 2&, 0&) = 11&
  x(1&, 2&, 1&) = 12&
  ' ---
  x(2&, 0&, 0&) = 13&
  x(2&, 0&, 1&) = 14&
  x(2&, 1&, 0&) = 15&
  x(2&, 1&, 1&) = 16&
  x(2&, 2&, 0&) = 17&
  x(2&, 2&, 1&) = 18&
 
  Call Print3DArrayToRange(x, Sheets("Output"), Range("L15"))
End Sub

Output:
Dante Amor
ALMN
1
15123
16456
17789
18101112
19131415
20161718
Output



--------------
I hope to hear from you soon.
Respectfully
Dante Amor
--------------
 
Upvote 0
Unfortunately, my grasp of arrays is like a 2 out of 10 and I don't expect that to change much. I wish I could have been of more help because that would mean I could rank myself higher. :cry:
 
Upvote 0

Forum statistics

Threads
1,215,022
Messages
6,122,726
Members
449,093
Latest member
Mnur

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top