Hi, On microsoft access, we have 2 wild characters, "*" and "?". So the mistake is in using "=" instead of the LIKE. Try to use sentance as: daGuests = new OleDbDataAdapter(string.Format("SELECT * FROM Assignee WHERE SN LIKE '*{0}*'", search), conn); and I hope it will work for you. Manoj