I'm trying to get values from 2 cells in an array to populate the text field of a combobox on a userform. The values in the array look like this:
A 1
B 2
C 3
B 4
I would like to make a distinction between B2 and B4 in the combobox text field. The field currently populates like B
. I would like it to populate with B 2
instead. This question is partly related to this question.
I tried using this that was linked from here but couldn't get the ListCount property to work. I used this to better understand arrays in a hope that it would provide some insight. I tried this approach but it doesn't populate the text field. WhereInArray looks like it is more for finding a value and also appears to be unique-value-dependent. I tried this but it seems to get tripped up on the array. Any help would be greatly appreciated.