The listbox is displaying the proper information, but it shows all the entries twice. The top of the list shows all items with just First and Last name. IT then repeats the list with the (SSN) behind the name. The second portion is what I would like it to display. How can I have it get rid of the other entries?Code:Private Sub Form_Load() Dim db As DAO.Database Dim rs As DAO.Recordset Dim strSQL As String, strItem As String DoCmd.GoToRecord acDataForm, "frmAddClassRoster", acNewRec strSQL = "SELECT ID, FirstName, LastName, SSN FROM tbl1Students" Set db = CurrentDb Set rs = db.OpenRecordset(strSQL) Do Until rs.EOF strItem = rs.Fields("ID").Value & ";" _ & rs.Fields("FirstName").Value _ & " " _ & rs.Fields("LastName").Value _ & " (" _ & rs.Fields("SSN").Value _ & ")" Me.lstAllStudents.AddItem strItem ' Row Source Type must be Value List rs.MoveNext Loop rs.Close Set rs = Nothing Set db = Nothing End Sub