Aleksey Masharov

Good day!

i've a problem:

When i search for people , for example. by First Name i have next results:

1. String : FirstName: "Aleksey" Results: All need items

2. String: FirstName: "Ale" Results: Nothing

3. String: FirstName: "Ale Results: All need items

4. String: FirstName: ' Ale Results: All nees items

5. String: FirstName: Ale" or Ale' Results: All need items

6. String: FirstName: Ale Results: All need Items

If somebody know - What to do with 2 example to take Results: All Need Items

TIA



Re: SharePoint - Search Searching by full name in SharePoint 2007

Puneet Narula - MSFT

Hi Aleksey

Doing a search with Firstname:"Ale" means that you are looking for exact match.

If you want to do the prefix search which is what I think you are trying to do then remove the double quotes like below:

Firstname:Ale

This will give you results for everybody who has their first name starting with Ale

-Puneet