Results 1 to 4 of 4

Populate multicolumn listbox

Threaded View

  1. #1
    Forum Contributor
    Join Date
    12-05-2008
    Location
    Kiruna
    Posts
    163

    Populate multicolumn listbox

    Hi

    i use this code to populate a list box from worksheet "Data"

    The problem i have is that i want to populate both column A and B to the listbox and
    with this code i only get it to populate from column A, can anyone help me with what
    i have to add to make it populate both columns in the the listbox ?


    Dim rngName As Range
        Dim ws As Worksheet
        Dim i As Integer
    
        Set ws = Worksheets("Data")
        For i = 1 To ws.Cells(ws.Rows.Count, 1).End(xlUp).Row Step 1
            If ws.Cells(i, 1).Value <> vbNullString Then Me.ListBox1.AddItem ws.Cells(i, 1)
            
        Next i
    Right now i using this code and i works, exept it populates the active sheet i have open in excel i want to have another sheet open when i open the userform.
    With Sheets("Data")
    ListBox1.ColumnCount = 2
    ListBox1.ColumnWidths = "30;10"
    ListBox1.List = Range("A1:B" & Range("A" & Rows.Count).End(xlUp).Row).Value
        
    End With
    Petter
    Last edited by Petter120; 11-15-2014 at 07:53 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Need to populate a multicolumn listbox using the value of a combo box
    By wingnut74 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-26-2014, 03:19 PM
  2. Multicolumn dynamic Listbox - Remove Duplicates in Listbox
    By s2jrchoi in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-13-2014, 12:30 PM
  3. Having problems populating a multicolumn listbox changing Listbox column with a loop.
    By Aristizabal95 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-11-2013, 12:41 PM
  4. Copy Selected items from multicolumn, multiselect listbox to another listbox
    By Willigb in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-19-2013, 11:27 AM
  5. populate multicolumn listbox?
    By Alen32 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-22-2005, 06:06 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1