Results 1 to 3 of 3
  1. #1
    Dscalf1 is offline Novice
    Windows 10 Access 2013 64bit
    Join Date
    Jul 2017
    Posts
    17

    Question Multi Value List

    Hey Everyone,



    I think I have a pretty simple problem but just cant figure it out.

    I have a table name "Action Items" and in that table I have a column named "Assigned To". Assigned to is a multivalue list because sometimes an action item is assigned to more than one person.

    I have a form that I want people to fill out to add an action item. In the form Im trying to add the assigned to column where they can select more than one value. However when you try and use the form it doesnt come up as a multivalue list. Just a regular one. Any ideas.

    When I try to Add existing fiields it wont let me add just the assigned to its making me add the field assignedTo.Value. Not sure where to go from here..

  2. #2
    orange's Avatar
    orange is offline Moderator
    Windows 10 Access 2010 32bit
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,870
    Most people will tell you to avoid multivalued fields.

    I recommend you consider a 3 table approach

    ActionItem--->ActionItemAssignedTo<-----Person


    tblActionItem

    ActionItemID
    ActionItemName
    ActionItemDesc

    tblPerson
    PersonID
    PersonFirstName
    PersonLastName


    tblActionItemAssignedTo

    ActionItemAssigedID
    ActionItemID
    PersonID




    This is a normalized structure that allows mutltiple people to be Assigned to a task
    and allows multiple Tasks to be assigned to a person

    Good luck

  3. #3
    Bulzie is offline VIP
    Windows 7 64bit Access 2007
    Join Date
    Nov 2015
    Posts
    1,511
    As Orange said might be better to multiple tables. But for multivalue fields, you have to go into the table, select that field, look at the bottom for the Lookup tab and for DisplayControl, change it to Combo or List box depending on what you are using, make sure the row source and other values are correct, then down further change Allow Multiple values to Yes. It will save values separated by comma so is a pain to extract sometimes. Also cannot use SQL, must be Access tables.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 1
    Last Post: 02-15-2016, 04:48 PM
  2. Multi Select List box
    By Thompyt in forum Programming
    Replies: 9
    Last Post: 10-05-2015, 01:15 PM
  3. Replies: 15
    Last Post: 11-20-2013, 04:30 PM
  4. multi select list box
    By crowegreg in forum Forms
    Replies: 1
    Last Post: 07-28-2012, 11:52 PM
  5. Multi select list box
    By foxtet in forum Forms
    Replies: 1
    Last Post: 05-30-2011, 02:13 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums