T
Todd Huttenstine
Hey
Below is code that populates a listbox using the RowSource property.
Counter = Worksheets("Market IDs All
Regions").Range("A65536").End(xlUp).Row
ListBox1.ColumnCount = 3
ListBox1.ColumnHeads = True
ListBox1.RowSource = Workbooks("B2B Master.xls").Worksheets("Market IDs
All Regions").Range("A2" & Counter).Address
Lets say I need to change the value of row 6 column 2... How would I
specify this?
Thanks
Todd Huttenstine
Below is code that populates a listbox using the RowSource property.
Counter = Worksheets("Market IDs All
Regions").Range("A65536").End(xlUp).Row
ListBox1.ColumnCount = 3
ListBox1.ColumnHeads = True
ListBox1.RowSource = Workbooks("B2B Master.xls").Worksheets("Market IDs
All Regions").Range("A2" & Counter).Address
Lets say I need to change the value of row 6 column 2... How would I
specify this?
Thanks
Todd Huttenstine