Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I currently have an array of userform control values. I need to list these
controls values in a column. I currently use a For...Next Loop to list the elements, but I would like to not use a loop. The could I have below doesn't work, why? Option Base 1 Sub Test() Dim aryControls As Variant aryControls = Array(Control1, Control2, Control3, etc.) Sheets("Data Storage").Range(Cells(1, lngColumn), Cells(UBound(ctlArray), lngColumn)).Value = ctlArray End Sub -- Cheers, Ryan |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can you make Range Equal All Values in an Array? | Excel Programming | |||
Setting a range.value equal to /part/ of a (3D) variant array? | Excel Programming | |||
Redimming an array dynamically assigned from range (how to redim first dimension of a 2-D array? /or/ reverse the original array order) | Excel Programming | |||
SUMPRODUCT - How can I use does not equal in an array? | Excel Worksheet Functions | |||
What cells in a array equal my value? | Excel Worksheet Functions |