Results 1 to 20 of 20

Populating Combo Box2 based on a selection made from Combo Box1

Threaded View

  1. #11
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Populating Combo Box2 based on a selection made from Combo Box1

    You don't need a vlookup.

    This is all you need:

    
    Private Sub ComboBox2_Change()
    If ComboBox2.ListIndex = 0 Then Exit Sub
    
    Range("K5").Value = Worksheets("Products").Cells(ComboBox2.ListIndex + 1, ComboBox1.ListIndex * 3 + 1).Value
    End Sub
    Attached Files Attached Files
    Last edited by mehmetcik; 09-06-2014 at 06:53 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Combo Box2 selections available based on Combo box 1 selection
    By wishn4fishn in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-28-2013, 08:13 PM
  2. combo box input range based on the other combo box selection
    By hedayet in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-08-2013, 02:27 AM
  3. Excel - populating data (checkboxes) based on combo box selection
    By gkang116 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-28-2011, 06:50 PM
  4. Populate a Combo Box based on the selection of another Combo Box
    By thunder279 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-18-2011, 03:40 PM
  5. Select Row in List Box with 2 columns - Col 1 populates form 1 box1,Col 2 pop box2
    By bernier@lucrf.com.au in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-20-2006, 09:10 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