Find Index of Multi Col listbox and write to cell

tahano54

New Member
Joined
Apr 1, 2015
Messages
2
I have a list box created thusly

Code:
 'Populate Jurisdiction
 
     With Me.ListBox _Jurisdiction
        .ColumnCount = 2
        For i = 1 To 35
            .AddItem Range("Tables!C2:C36").Cells(i, 1).Value
            .List(.ListCount - 1, 1) = Range("Tables!D2:D36").Cells(i, 1).Value
        Next i
    End With
That loads it fine, so now I've selected an item in the list. say number 10. As I'm understanding so far, this is a zero base 2 dimensional array, so the index would be for column 1 item 10 a index of 0,9. If I wanted the element in the second column that index would be 1,9. Correct?
From my research, I have to find the index of whatever item I've selected and this goes in the Click_Change event which seem to have issues if I'm understanding correctly.
So,

Code:
str =Me.ListBox _Jurisdiction(.ListIndex,0)

in the change event would geve me a value that I could write to a cell?

Any guidance would be appreciated.
Thanks
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.

Forum statistics

Threads
1,215,045
Messages
6,122,830
Members
449,096
Latest member
Erald

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top