How do a search a field that contains firstname and lastname for a space which seperates the two. For example the field "Name" contains the string "John Doe". I need a sql stmt that will search "John Doe" for the space. Also, in the result I would like to split the column "Name" into two result columns called "FirstName" and "LastName". I do not want to modify the table in anyway all I just want the result from the query to be split into two columns "FirstName" and "LastName". Basically, what I have to do is write a report sorted by last name, so I need to extract the last name from the field. Hope I explained that well enough. Any help anyone could provide would be greatly appreciated. Thank you.