Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~96 People Reached
Favorite Forums
Favorite Tags
Member Avatar for duncangjacks

[CODE]Sub From_sheet_make_array_col() Dim myarray As Variant myarray = Range("A1:A10").Value 'Looping structure to look at array. For i = 1 To UBound(myarray) MsgBox myarray(i, 1) Next End Sub[/CODE] [CODE]Sub From_sheet_make_array_row() Dim myarray As Variant myarray = Range("A1:J1").Value 'Looping structure to look at array. For i = 1 To UBound(myarray) MsgBox myarray(i, …

Member Avatar for duncangjacks
0
96