Results 1 to 9 of 9

How do I create user-friendly drop-down lists where you can select multiple options?

Threaded View

  1. #4
    Forum Expert GeneralDisarray's Avatar
    Join Date
    09-15-2011
    Location
    Pittsburgh, PA, USA
    MS-Off Ver
    Windows Excel 2016
    Posts
    1,416

    Re: How do I create user-friendly drop-down lists where you can select multiple options?

    You might try going a different way with it. See attached sheet. I identified a list of choices and named the range [VALID_OPTIONS] and the target cell is just named [THE_CELL].


    Code needed:

    Sub RoundedRectangle1_Click()
    Dim c As Range
    Dim s As String
    If Intersect(Selection, [VALID_OPTIONS]) Is Nothing Then Exit Sub
    
    For Each c In Intersect(Selection, [VALID_OPTIONS])
        s = s & ", " & c.Value
    Next c
    'Remove first comma and space, return value to sheet'
    [THE_CELL].Value = Right(s, Len(s) - 2)
    End Sub
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Select multiple options from drop down list
    By forestview in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 06-26-2016, 01:42 PM
  2. Select multiple options from drop down list
    By nsprasad in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 09-29-2015, 05:30 AM
  3. Populating multiple drop down lists with different options
    By achdeekay in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 10-27-2013, 08:17 PM
  4. [SOLVED] How to create different drop down lists depending on user's response?
    By WillGe in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-09-2012, 08:26 AM
  5. Create a user-friendly log sheet
    By boom929 in forum Excel General
    Replies: 12
    Last Post: 05-26-2010, 10:12 PM
  6. Create lists with multiple choice options
    By Proejo in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 08-30-2007, 08:36 AM

Tags for this Thread

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