Results 1 to 8 of 8

Loops and arrays

Threaded View

  1. #1
    Registered User
    Join Date
    03-11-2013
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    24

    Loops and arrays

    I am working on an assignment for class. I am supposed to get 25 random numbers to appear in A1:E5, then using arrays and loops, I am supposed to get the same numbers to appear in cells F1:F25.
    There are 3 parts to this assignment:
    Part 1: fill cells A1:E5 with random integers between 0 - 99
    Part 2: fill the two-dimensional array with the values of cells A1:E5
    Part 3: fill cells F1:F25 from the two-dimensional array.
    Here is my code followed by the issue I am having.

    Option Explicit
    Dim intTwoDimArray(4, 4) As Integer
    Dim intArrayRange As Object
    Dim intColumnIndex As Integer
    Dim intRowIndex As Integer
    Dim intArraySize As Integer
    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    For intRowIndex = 1 To 5
        For intColumnIndex = 1 To 5
            Cells(intRowIndex, Chr(64 + intColumnIndex)).Value = Int(Rnd * 100) + 1
        Next intColumnIndex
    Next intRowIndex
    
    For intRowIndex = 0 To 4
     For intColumnIndex = 0 To 4
            intTwoDimArray(intRowIndex - 1, intColumnIndex - 1) = Cells(intRowIndex, Chr(64 + intColumnIndex))
        Next intColumnIndex
    Next intRowIndex
     
    For intRowIndex = 1 To intArraySize
        Cells((intColumnIndex + (intRowIndex * 5)) + 1, "F").Value = intTwoDimArray(intRowIndex, intColumnIndex)
    Next intRowIndex
    End Sub
    I keep getting a runtime error 9 and it highlights " intTwoDimArray(intRowIndex - 1, intColumnIndex - 1) = Cells(intRowIndex, Chr(64 + intColumnIndex))."'
    Please help and any and all help is appreciated.
    Last edited by LadyB; 04-12-2013 at 04:09 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1