MS 将 FORM 中的多个值作为单行访问到 table

MS Access Multiple value from a FORM into table as a Single Line

为了避免使用多个值字段,我需要一些帮助来将 MS Access 中的 FORM 选项配置为 SINGLE line/field。

示例:

在 Table 中它应该像单曲一样出现 line/field

例子

这可能吗?如果显示有人可以帮助我吗?

类似的东西

Dim l As Long
Dim s As String

For l = 0 To Me.ListBox1.ListCount - 1
    If Me.ListBox1.Selected(l) Then
        s = s & Me.ListBox1.List(l) & ","
    End If
Next l

s = Left(s, Len(s) - 1)
Debug.Print s