+ Reply to Thread
Results 1 to 3 of 3

Clearing List Boxes

  1. #1
    Registered User
    Join Date
    06-17-2005
    Posts
    2

    Question Clearing List Boxes

    I am working on a project in which one list box will populate the next through vlookups. The only problem is that if you change one of the boxes previous to another it does not clear them therefore they contain false values. Any ideas on how to make the boxes clear when selecting any of the previous boxes?

  2. #2
    Guest

    Re: Clearing List Boxes

    Hi
    I don't know! But I can suggest you take a look here:
    http://www.contextures.com/xlDataVal02.html
    Sorry I can't be more help, but the above may point you in the right
    direction. Sorry, too, if you've already tried Debra's site.

    Cheers.
    --
    Andy.


    "Kevin Willhoit"
    <Kevin.Willhoit.1qs32c_1119024305.2233@excelforum-nospam.com> wrote in
    message news:Kevin.Willhoit.1qs32c_1119024305.2233@excelforum-nospam.com...
    >
    > I am working on a project in which one list box will populate the next
    > through vlookups. The only problem is that if you change one of the
    > boxes previous to another it does not clear them therefore they contain
    > false values. Any ideas on how to make the boxes clear when selecting
    > any of the previous boxes?
    >
    >
    > --
    > Kevin Willhoit
    > ------------------------------------------------------------------------
    > Kevin Willhoit's Profile:
    > http://www.excelforum.com/member.php...o&userid=24413
    > View this thread: http://www.excelforum.com/showthread...hreadid=380122
    >




  3. #3
    Dave Peterson
    Guest

    Re: Clearing List Boxes

    I wasn't sure how you were using the listboxes and how you were using the
    =vlookup()'s.

    But I put 3 listboxes on a userform (listbox1, listbox2, and listbox3).

    Listbox1 controls listbox2 which controls listbox3.

    This is the code I had behind the userform:

    Option Explicit
    Dim blkProc As Boolean
    Private Sub ListBox1_Change()
    Dim iCtr As Long
    Dim myChar As String
    blkProc = True
    Me.ListBox2.Clear
    Me.ListBox3.Clear
    blkProc = False
    If Me.ListBox1.Value = "a1" Then
    myChar = "x"
    Else
    myChar = "y"
    End If
    For iCtr = 1 To 10
    Me.ListBox2.AddItem myChar & iCtr
    Next iCtr
    End Sub

    Private Sub ListBox2_Change()
    Dim iCtr As Long
    Dim myChar As String

    If blkProc = True Then Exit Sub

    blkProc = True
    Me.ListBox3.Clear
    blkProc = False
    If Me.ListBox2.Value = "x1" Then
    myChar = "z"
    Else
    myChar = "w"
    End If
    For iCtr = 1 To 10
    Me.ListBox3.AddItem myChar & iCtr
    Next iCtr
    End Sub

    Private Sub ListBox3_Change()
    If blkProc = True Then Exit Sub
    MsgBox "hi"
    End Sub

    Private Sub UserForm_Initialize()
    Dim iCtr As Long
    For iCtr = 1 To 10
    Me.ListBox1.AddItem "a" & iCtr
    Next iCtr
    End Sub

    So if you go an change a previous listbox, then the "trailing" listboxes are
    reset or reinitialized.

    Maybe it'll help?

    Kevin Willhoit wrote:
    >
    > I am working on a project in which one list box will populate the next
    > through vlookups. The only problem is that if you change one of the
    > boxes previous to another it does not clear them therefore they contain
    > false values. Any ideas on how to make the boxes clear when selecting
    > any of the previous boxes?
    >
    > --
    > Kevin Willhoit
    > ------------------------------------------------------------------------
    > Kevin Willhoit's Profile: http://www.excelforum.com/member.php...o&userid=24413
    > View this thread: http://www.excelforum.com/showthread...hreadid=380122


    --

    Dave Peterson

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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