How to copy the contents of one 2d array to another? (VBA)

Pingu7

My current code looks like this:

Dim Array1(1 To 2, 1 To 2) As Variant
Dim Array2(1 To 2, 1 To 2) As Variant
Array1(1, 1) = "A"
Array1(1, 2) = "B"
Array1(2, 1) = 1
Array1(2, 2) = "C"
Array2 = Array1

This however returns a "Compile Error: Can't assign to array"

Any suggestions on how to fix this would be greatly appreciated

Gary's Student

A double loop:

Sub qwerty()
    Dim Array1(1 To 2, 1 To 2) As Variant
    Dim Array2(1 To 2, 1 To 2) As Variant
    
    Array1(1, 1) = "A"
    Array1(1, 2) = "B"
    Array1(2, 1) = 1
    Array1(2, 2) = "C"
    
    For i = 1 To 2
        For j = 1 To 2
            Array2(i, j) = Array1(i, j)
        Next j
    Next i
End Sub

Or you can cheat:

Sub qwerty2()
    Dim Array1(1 To 2, 1 To 2) As Variant
    Dim Array2
    Dim r As Range
    
    Set r = Range("A1:B2")
    
    Array1(1, 1) = "A"
    Array1(1, 2) = "B"
    Array1(2, 1) = 1
    Array1(2, 2) = "C"
    
    r = Array1
    Array2 = r
    
End Sub

EDIT#1:

BigBen's proposed solution works and it probably the best approach.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to Copy Contents in one DataGridview to another DataGridview

From Dev

How to copy contents of one canvas to another?

From Dev

How to Copy Contents in one DataGridview to another DataGridview

From Dev

How does one copy 1D array to another 1D array and 2D array?

From Dev

How to properly copy contents of one char array into another when passed to function, WITHOUT using STL?

From Dev

Not able to copy the contents of one array to another in Angular 5

From Dev

How to copy contents in an array of object into another array in C++?

From Java

How do I copy the contents of one stream to another?

From Dev

How to copy contents of one text file to another with reduced length?

From Dev

Kendo UI TreeView - how to copy contents from one treeview to another?

From Dev

How to copy contents from one file to another word by word in C?

From Dev

how to copy contents from one textbox in one form to another textbox in another form through JS

From Dev

Copy contents of one field to another using jQuery

From Dev

How to copy contents of an array to a variable

From Dev

How do I copy one image to another using Excel VBA

From Dev

How to copy cell from one row to another in excel vba

From Dev

VBA copy row from one sheet to another based on 2 criteria

From Dev

How to copy one array to another using offsets and clipping?

From Dev

How to Copy a 2d array and print copy in Java?

From Dev

How do I save the contents of this 2d array to a file

From Dev

How to save the contents of a powerSet into a 2d array in Java

From Dev

VBA Copy data from one sheet to another

From Dev

VBA - Copy data from one sheet to another

From Dev

Copy Contents of One Column Of a Table To another of a different Table SQL

From Dev

Copy Field contents from one Table to another table - FileMaker

From Dev

Copy contents of one file and paste into another text file based on the date

From Dev

How to copy an iterator to another one?

From Dev

Copy the contents of array or memory block to another specific type, using Delphi

From Dev

How do I copy a 2d array into a temporary 2d array and return it?

Related Related

  1. 1

    How to Copy Contents in one DataGridview to another DataGridview

  2. 2

    How to copy contents of one canvas to another?

  3. 3

    How to Copy Contents in one DataGridview to another DataGridview

  4. 4

    How does one copy 1D array to another 1D array and 2D array?

  5. 5

    How to properly copy contents of one char array into another when passed to function, WITHOUT using STL?

  6. 6

    Not able to copy the contents of one array to another in Angular 5

  7. 7

    How to copy contents in an array of object into another array in C++?

  8. 8

    How do I copy the contents of one stream to another?

  9. 9

    How to copy contents of one text file to another with reduced length?

  10. 10

    Kendo UI TreeView - how to copy contents from one treeview to another?

  11. 11

    How to copy contents from one file to another word by word in C?

  12. 12

    how to copy contents from one textbox in one form to another textbox in another form through JS

  13. 13

    Copy contents of one field to another using jQuery

  14. 14

    How to copy contents of an array to a variable

  15. 15

    How do I copy one image to another using Excel VBA

  16. 16

    How to copy cell from one row to another in excel vba

  17. 17

    VBA copy row from one sheet to another based on 2 criteria

  18. 18

    How to copy one array to another using offsets and clipping?

  19. 19

    How to Copy a 2d array and print copy in Java?

  20. 20

    How do I save the contents of this 2d array to a file

  21. 21

    How to save the contents of a powerSet into a 2d array in Java

  22. 22

    VBA Copy data from one sheet to another

  23. 23

    VBA - Copy data from one sheet to another

  24. 24

    Copy Contents of One Column Of a Table To another of a different Table SQL

  25. 25

    Copy Field contents from one Table to another table - FileMaker

  26. 26

    Copy contents of one file and paste into another text file based on the date

  27. 27

    How to copy an iterator to another one?

  28. 28

    Copy the contents of array or memory block to another specific type, using Delphi

  29. 29

    How do I copy a 2d array into a temporary 2d array and return it?

HotTag

Archive