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

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
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,214,979
Messages
6,122,551
Members
449,088
Latest member
davidcom

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