XL97: How to Populate One ListBox Based On Another ListBox

Last reviewed: February 27, 1998
Article ID: Q161518
The information in this article applies to:
  • Microsoft Excel 97 for Windows

SUMMARY

This article contains an example of using the selected item in one ListBox control on a UserForm to determine the list that will populate a second ListBox control.

MORE INFORMATION

Microsoft provides examples of Visual Basic for Applications procedures for illustration only, without warranty either expressed or implied, including, but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. The Visual Basic procedures in this article are provided 'as is' and Microsoft does not guarantee that they can be used in all situations. While Microsoft support engineers can help explain the functionality of a particular macro, they will not modify these examples to provide added functionality, nor will they help you construct macros to meet your specific needs. If you have limited programming experience, you may want to consult one of the Microsoft Solution Providers. Solution Providers offer a wide range of fee-based services, including creating custom macros. For more information about Microsoft Solution Providers, call Microsoft Customer Information Service at (800) 426-9400.

  1. Close and save any open workbooks and then open a new workbook.

  2. On Sheet1, enter the following values:

        A1: North Carolina  B1: Charlotte   C1: Charleston  D1: Charlottesville
        A2: South Carolina  B2: Greensboro  C2: Columbia    D2: Norfolk
        A3: Virginia        B3: Raleigh     C3: Greenville  D3: Richmond
    
    

  3. Start the Visual Basic Editor (press ALT+F11).

  4. If the Properties Window is not visible, click Properties on the View menu (or press F4).

  5. On the Insert menu, click UserForm.

  6. Draw a ListBox control on the UserForm.

  7. Activate the Properties window (press F4).

  8. Select the RowSource property and type "Sheet1!A1:A3" (without the quotation marks).

  9. Draw another ListBox control on the UserForm

  10. Double-click the ListBox1 control (from Step 6) to open up the Code Window for the UserForm.

  11. In the module type the following code for the ListBox1 Click event:

    Private Sub ListBox1_Click()

               'Get the currently selected item
               Select Case ListBox1.Value
    
                   'If North Carolina, set RowSource property of ListBox2
                   'to Column B.
                   Case "North Carolina"
                       ListBox2.RowSource = "Sheet1!B1:B3"
    
                   'If South Carolina, set RowSource property of ListBox2
                   'to Column C.
                   Case "South Carolina"
                       ListBox2.RowSource = "Sheet1!C1:C3"
    
                   'If Virginia, set RowSource property of ListBox2 to 
                   'Column D.
                   Case "Virginia"
                       ListBox2.RowSource = "Sheet1!D1:D3"
    
               End Select
    
           End Sub
    
    

  12. Run the UserForm.

When you choose one of the items in ListBox1, the list in ListBox2 updates, reflecting the choice you made in ListBox1.

  1. Close the UserForm.

REFERENCES

For additional information, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q141568
   TITLE     : XL: Visual Basic Macro to Dynamically Populate a List Box

For more information about ListBoxes, click the Index tab in Visual Basic for Applications Help, type the following text

   listbox

and then double-click the selected text to go to the "ListBox control" topic.


Additional query words: 97 8.00 XL97 dynamic
Keywords : kbcode kbprg xlvbahowto
Version : WINDOWS:97
Platform : WINDOWS


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 27, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.