yarondavid
Programmer
I don't know how I can insert the texts from few cells into array(i) by Excel macro script.
In my part of Excel macro, I want to take some text from cells in column A from my "Summary" sheet and insert them into the elements of 'PlatformNames' array.
Dim PlatformNames(1 To 20) As String
With Workbooks("Acceptance_Tests_Summary_1.xls").Worksheets("Summary")
For i = 0 To 52
For j = 1 To 12
PlatformNames(j) = .Cells(i, A)
i = i + 4
j = j + 1
Next i
Next j
End With
In my part of Excel macro, I want to take some text from cells in column A from my "Summary" sheet and insert them into the elements of 'PlatformNames' array.
Dim PlatformNames(1 To 20) As String
With Workbooks("Acceptance_Tests_Summary_1.xls").Worksheets("Summary")
For i = 0 To 52
For j = 1 To 12
PlatformNames(j) = .Cells(i, A)
i = i + 4
j = j + 1
Next i
Next j
End With