Hi Everyone,
I have a userform combobox currently being populated with dynamic range "SameAs". At the moment it is populating the combobox with items from column A on sheet "Quantities" from row 6 down. How would I adjust the range to list items from column B as well? Here's what I'm using for column A:
I have multicolumn comboboxes working with static named ranges but can't seem to figure out how to tweak this dynamic named range to populate the combobox with 2 columns.
Thanks,
Jordan
I have a userform combobox currently being populated with dynamic range "SameAs". At the moment it is populating the combobox with items from column A on sheet "Quantities" from row 6 down. How would I adjust the range to list items from column B as well? Here's what I'm using for column A:
Code:
=OFFSET(Quantities!$A$6, 0, 0, COUNTA(Quantities!$A:$A)-1,1)
I have multicolumn comboboxes working with static named ranges but can't seem to figure out how to tweak this dynamic named range to populate the combobox with 2 columns.
Thanks,
Jordan