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

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
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,338
Messages
6,124,349
Members
449,155
Latest member
ravioli44

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