Simple VBA for Loop/Array question

DenandreH44

New Member
Joined
Mar 13, 2022
Messages
4
Office Version
  1. 365
Platform
  1. MacOS
Hi there,

I'm working on some vba classwork exercises and hoping someone can point me in the direction to fix an error im facing.

The problem is below:
Screen Shot 2022-03-27 at 6.48.38 pm.png


I've written the below code:
VBA Code:
Sub q8()

Dim array1() As Variant


array1() = Range("A24:A33") 

Dim array2(0 To 9, 0) As Integer

For i = 0 To 9
    array2(i, 0) = array1(i + 1, 1)
Next i

Range("B24:B33") = array2

End Sub

When i run this sub, im met with "Application-defined or object-defined error" - can someone please help me understand what this means and how i can address it?
Cheers
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
When I run your code, I don't get an error. It runs successfully.

Which line causes the error?
 
Upvote 0

Forum statistics

Threads
1,213,496
Messages
6,113,993
Members
448,539
Latest member
alex78

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