Extracting text from a List Box

mjr374

New Member
Joined
Apr 11, 2019
Messages
1
I want to define the selection from a list box as a variant to be used later, similar to what is done in the code below from a text box.

[FONT=&quot]mySearch = sht.Shapes("EnteredText").TextFrame.Characters.Text
[/FONT]

Can someone help me here?
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Where is your listbox located? Let's say it's located on a userform, try...

Code:
myListBoxSelection = userform1.ListBox1.Value

If the code resides within the code module for either your sheet or userform, you can use the following instead...

Code:
myListBoxSelection = Me.ListBox1.Value

Note that the keyword Me will refer to the object in which it resides. So, if the code resides with the sheet code module, Me will refer to the Sheet object. And, if the code resides with the userform code module, it will refer to the UserForm object.

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,177
Members
453,021
Latest member
Justyna P

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