Array - cannot paste values into diffrend ws

Captain_Jack_T

New Member
Joined
Nov 6, 2012
Messages
27
Hi guys

I am using an array in order to copy the values of a some cells into another sheet. Does anyone know why it breaks? Thanks in advance!

Code:
Sub TrySomeArrays()

    Dim RollerCoaster() As Variant
    Dim Dimension1 As Long, Dimension2 As Long
    
    Sheet1.Activate
    
    Dimension1 = Range("A2", Range("B2").End(xlDown)).Cells.Count - 1
    Dimension2 = Range("A2", Range("A2").End(xlToRight)).Cells.Count - 1
    
    ReDim RollerCoaster(0 To Dimension1, 0 To Dimension2)
    
    For Dimension1 = LBound(RollerCoaster, 1) To UBound(RollerCoaster, 1)
        For Dimension2 = LBound(RollerCoaster, 2) To UBound(RollerCoaster, 2)
[COLOR=#daa520]            Sheet2.Range("A1").Select
            ActiveCell.Offset(Dimension1, Dimension2).Value = RollerCoaster(Dimension1, Dimension2).Value[/COLOR]
        Next Dimension2
    Next Dimension1
    
End Sub
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
What is the error message that you get and on what line is it?

You cannot select a cell on a specified sheet, if that sheet isn't active, so consider changing:
Rich (BB code):
Sheet2.Range("A1").Select

To
Rich (BB code):
Sheet2.Select
Range("A1").Select

I think you need to remove .Value, e.g.
Rich (BB code):
ActiveCell.Offset(Dimension1, Dimension2).Value = RollerCoaster(Dimension1, Dimension2)

vs
Rich (BB code):
ActiveCell.Offset(Dimension1, Dimension2).Value = RollerCoaster(Dimension1, Dimension2).Value

Since .Value is not a property of an array object, .Value is a property of a range object

You shouldn't need to use .Activate or .Select to read or write cell values, and usually if you're printing the entire array out, there isn't a need to loop through it, try:
Rich (BB code):
Sub TSA()
    
    Dim arr()   As Variant
    Dim LR      As Long
    Dim LC      As Long
    
    With Sheet1
        LR = .Cells(.Rows.count, 2).End(xlUp).row
        LC = .Cells(2, .Columns.count).End(xlToLeft).column
        arr = .Cells(2, 1).Resize(LR - 1, LC - 1).Value
    End With
    
    Sheet2.Cells(2, 1).Resize(UBound(arr, 1), UBound(arr, 2)).Value = arr
    
    Erase arr

End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,341
Messages
6,124,391
Members
449,155
Latest member
ravioli44

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