Hi All
I am trying to get the selected data from a listbox to insert into a table. I am only able to get the first column into the table. I am not sure how to select columns 2 and 3.
Dim sql As String
sql = "INSERT INTO [CHS negotiator] ([Staff ID#], [Staff Last Name], [Staff First Name]) VALUES ('" & List4 & "', '" & List4 & "', '" & List4 & "');"
CurrentDb.Execute sql
Thanks
Craig