Skip to content

Instantly share code, notes, and snippets.

@xxxx7
Created August 1, 2015 15:00
Sub output1to100_6()
Dim myArray(1 To 100, 1 To 1) As Integer, i As Integer
For i = 1 To 100
myArray(i, 1) = i
Next
Range("A1:A100") = myArray
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment