I have two tables in my law office db.(for purposes of this question). The first is a clientinfo table which is populated by a clientlinfo form. Then later on I have a table which stores the info on the defendants in each legal case again populated by a form populated by a form. I need to be able to run a search to see if the name being entered as a defendant already exists in the clientinfo table and ifso to popup a msgbox with a warning that there is a conflict because we can't sue someone who is already a client in another case. Part of the problem is that client name in the clientinfo table consists of 3 fields: FName, MI, and LName whereas Defendants name in defendants table consists of only one field: defname. I suspect I will have to create fields as well in my defendants table as well but I'm not sure. Can someone tell me if I need to add the additional 2 fields to my second table and how I write a a search string to tell me if the combination of each of the 3 fields = each other?