I am building a data base for a reality company and they need to select
multiple appliances that are included with the sale, how do I create such
a
list in access?
In a drop box? I assume you mean a Combo Box.
You can't.
Use a List box on a form .
Set it's MultiSelect property to Extended.
You'll also need code in the List Box Exit event to return all the
selected values.
Private Sub lstAppliances_Exit(Cancel As Integer)
Dim strString As String
Dim varItem As Variant
For Each varItem In lstAFriend.ItemsSelected
strString = strString & lstAFriend.ItemData(varItem) & ", "
Next varItem
[SomeControlOnForm] = strString
End Sub
Freezer; Stove; Dish Washer;