ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   additem listbox (https://www.excelbanter.com/excel-programming/285410-additem-listbox.html)

CG Rosén

additem listbox
 
Good day,

Is it possible to use the AddItem method to a 2-column ListBox?
My efforts has so far resulted in the code below but now I´am stuck.

Brgds

CG Rosén
-------------------------------------------------

For i = 2 To 50

If Sheets("constants").Cells(i, 6).Value = 1
Item1 = Sheets("constants").Cells(i, 4)
Item2 = Sheets("constants").Cells(i, 5)
UserForm2.ListBox1.AddItem Item1 ' add to column 1???
UserForm2.ListBox1.AddItem Item2 ' add to column 2???
End If
Next i




Tom Ogilvy

additem listbox
 
If Sheets("constants").Cells(i, 6).Value = 1
Item1 = Sheets("constants").Cells(i, 4)
Item2 = Sheets("constants").Cells(i, 5)
UserForm2.ListBox1.AddItem Item1 ' add to column 1
UserForm2.ListBox1.List(Listbox1.Listcount-1,1) = Item2 ' add to column
2
End If
Next i

--
Regards,
Tom Ogilvy


CG Rosén wrote in message
...
Good day,

Is it possible to use the AddItem method to a 2-column ListBox?
My efforts has so far resulted in the code below but now I´am stuck.

Brgds

CG Rosén
-------------------------------------------------

For i = 2 To 50

If Sheets("constants").Cells(i, 6).Value = 1
Item1 = Sheets("constants").Cells(i, 4)
Item2 = Sheets("constants").Cells(i, 5)
UserForm2.ListBox1.AddItem Item1 ' add to column 1???
UserForm2.ListBox1.AddItem Item2 ' add to column 2???
End If
Next i






losmac[_2_]

additem listbox
 
Set ColumnCount = 2

Dim i As Long

Me.ListBox1.AddItem "" 'first add item
i = Me.ListBox1.ListCount - 1 'which row after add
Me.ListBox1.Column(0, i) = "AAA" 'column 1
Me.ListBox1.Column(1, i) = "BBB" 'column 2


-----Original Message-----
Good day,

Is it possible to use the AddItem method to a 2-column

ListBox?
My efforts has so far resulted in the code below but now

I´am stuck.

Brgds

CG Rosén
-------------------------------------------------

For i = 2 To 50

If Sheets("constants").Cells(i, 6).Value = 1
Item1 = Sheets("constants").Cells(i, 4)
Item2 = Sheets("constants").Cells(i, 5)
UserForm2.ListBox1.AddItem Item1 ' add to

column 1???
UserForm2.ListBox1.AddItem Item2 ' add to

column 2???
End If
Next i



.



All times are GMT +1. The time now is 09:30 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com