Thanks...
The code I currently have is:
Code:
Private Sub Command25_Click()
Dim rst As Recordset
Set rst = CurrentDb.OpenRecordset("Session")
With rst
.AddNew
.Fields("ClientID") = ClientCombo.Value
.Fields("Date") = Date.Value
.Fields("Duration") = Duration.Value
.Fields("SessionType") = Session.Value
.Fields("Officer") = Officer.Value
.Fields("Comment") = Comment.Value
.Update
End With
DoCmd.Close acForm, "Log Session", acSaveYes
End Sub
The client ID is a combo box where they select one client and it's added to the table. If this was changed to allow multiple selections can someone help me to change that code?
Thanks.