Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I declare a dynamic array but don't know how to assign the cells.valu
to the wheel I use columns A1:AP1 to let the user key in each individual number. From the range that have numbers, I use the counter as array size. e.g Sub Lwheel() ict = WorksheetFunction.CountA(Range("A1:AP1")) Dim wheel() Redim Wheel(0 To ict) Example the user key in A1=1,A2=2,A3=3,A4=4,A5=5,A6=6,A7=7,A8=8 So the array becomes as below; Wheel(0)=A1 # 1 Wheel(1)=A2 # 2 Wheel(2)=A3 # 3 Wheel(3)=A4 # 4 Wheel(4)=A5 # 5 Wheel(5)=A6 # 6 Wheel(6)=A7 # 7 Wheel(7)=A8 # 8 My questions is how to assign the individual cells.value to wheel (0 until wheel(7)? End Sub Regards Michae -- Message posted from http://www.ExcelForum.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Set values in an Array | Excel Discussion (Misc queries) | |||
Looking Up Two Values in an Array | Excel Worksheet Functions | |||
Array: Counting multiple values within array | Excel Worksheet Functions | |||
To get values into an array | Excel Worksheet Functions | |||
Use array to return array of values | Excel Worksheet Functions |