I finally figured out how to populate a list box with two columns, Yeah! Even adjusted the widths. Looks Great.
Column A is a Part#, Column B is Part Description.
But when I make a selection from the list, only the left column (part#) shows up. How Do I get Column B to also show up?
With Me.cboCategories
.ColumnCount = 2
.RowSource _
= Worksheets("Data").Range("CATEGORY").Address(external:=True)
.ColumnHeads = False
End With