ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   listbox to cells?? (https://www.excelbanter.com/excel-programming/363913-listbox-cells.html)

tomro1[_5_]

listbox to cells??
 

i have a listbox in a userform were some text is in ( titles of books )
sometimes this are 5 titles, sometimes 3 or 20.

now i need a code that when i push a button, the titles are being
copied to cells in a worksheet beginning from cel a1

and my problem is, i don't know the right code.

and its not:
range("sheet1!a1") = listbox.text
or .value

plz help me


--
tomro1
------------------------------------------------------------------------
tomro1's Profile: http://www.excelforum.com/member.php...o&userid=35081
View this thread: http://www.excelforum.com/showthread...hreadid=550708


Jim Cone

listbox to cells??
 
If you know how many items in the list (say 7) then try ...

Worksheets("Sheet1").Range("A1:A7").Value = Me.ListBox1.List
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


"tomro1" wrote in message
i have a listbox in a userform were some text is in ( titles of books )
sometimes this are 5 titles, sometimes 3 or 20.
now i need a code that when i push a button, the titles are being
copied to cells in a worksheet beginning from cel a1
and my problem is, i don't know the right code.

and its not:
range("sheet1!a1") = listbox.text
or .value
plz help me
--
tomro1


jindon[_50_]

listbox to cells??
 

Code
-------------------

Dim i As Integer, n As Integer
With Me.ListBox1
For i = 0 To .ListCount - 1
If .Selected(i) Then
n = n + 1
Sheets("Sheet1").Cells(n, "a").Value = .ListIndex(i)
End If
Next
End With

-------------------

--
jindo
-----------------------------------------------------------------------
jindon's Profile: http://www.excelforum.com/member.php...fo&userid=1313
View this thread: http://www.excelforum.com/showthread.php?threadid=55070



All times are GMT +1. The time now is 03:09 AM.

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