So I am currently trying to make an interactive inventory userform for our ambulance to streamline things. What I am trying to do is, is allow users to select an item from a ComboBox that references a location on our ambulance that would then populate a list of items into a ListBox that shows them 2 columns of info. The Quantity of the item and the Item name. Everything I am finding has to do with just filling a single text box with a single line of info. If you look at the picture above I would like to also have the data with the headers also showing the column for the qty and item description. I need help with the coding on to do this cause I cant find any VBA code on something like this. Screenshot added above to ind of get an idea of what I am trying to do.
The current code I have for this is:
Private Sub ListBox1_Change()
If ComboBox1.Value = "Cabinet 1" Then
ListBox1.AddItem Sheet5.Range("Cabinet_1")
End If
End Sub