Trying to take data from a listbox to a textbox. Can somebody help with my code below.

Darren Smith

Well-known Member
Joined
Nov 23, 2020
Messages
631
Office Version
  1. 2019
Platform
  1. Windows
Sub ListBox1_Click()

Dim Listbox1 As ListBox
Dim Textbox1 As TextBox



If Listbox1.ListIndex <> -1 Then


.Textbox1 = Listbox1.List(Listbox1.ListIndex, 9)

End With

End If

End Sub
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
If it's a single select listbox
VBA Code:
Sub ListBox1_Click()
   If ListBox1.ListIndex <> -1 Then
      TextBox1 = ListBox1.List(ListBox1.ListIndex, 9)
   End If
End Sub
 
Upvote 0
Listbox1 says Variable not defined??
Sorry still very green on VBA thanks for your help.
 
Upvote 0
Try this:
VBA Code:
Private Sub CommandButton2_Click()
'Modified  11/25/2020  9:18:22 AM  EST
If ListBox1.ListIndex <> -1 Then TextBox1.Value = ListBox1.List(9)
End Sub
 
Upvote 0
The OP asked for the 9th column & if you look at the OP's code that is what he/she is trying to do.
 
Upvote 0

Forum statistics

Threads
1,215,471
Messages
6,125,002
Members
449,202
Latest member
Pertotal

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