Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
What you do is initialise the array as a dynamic array with the Dim statement
as below. Then run your procedure to count the number of rows. Now use the "ReDim" statement to set the array size and then fill the array as required. Sub MySub() Dim MyArray() <Your function to count the rows ReDim MyArray (1 To NumberofRows, 1 To 4) <Your function to fill array ComboBox1.List = MyArray End Sub If this helps please click "Yes" <<<<<<<<<< "jlclyde" wrote: How do you do this if it is not a fixed number of rows? I never know how many items are going to be in a column until the macro starts countign them. For instance I have a range of items down A starting from 52 and going to the end of the sheet. I want to list all item Numbers which will be every 4th row and the rest of the columns are offset from this number. Hwo woudl I set the Array if I do nto knwo how far down it goes? Thanks, Jay |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Converting a Word doc to a multi-column Excel spreadsheet | Excel Worksheet Functions | |||
fill combobox depending on selection from another combobox | Excel Discussion (Misc queries) | |||
How do I make multi column stacked graphs in Excel | Charts and Charting in Excel | |||
match in multi-column and multi-row array | Excel Discussion (Misc queries) | |||
Selecting any cell in a column I want my ComboBox to show. How? | Excel Discussion (Misc queries) |