If you were to ask ask me what makes a SharePoint Site column searchable, then the answer to that question points directly at the very powerful yet simple implementation known as: Managed Property.

Let's say you have a site column called Region, you want to search for a particular region and return the matching list items by typing in the value into the search box. Share Point internally creates a property called crawled property (ows_internalname) for each of the columns created in the list (in this case the Region will have the Crawled Property name as ows_Region). Once you create a managed property (Say : managed_Region) and map the crawled property (ows_Region) of the SharePoint list against the new managed property then the site column, Region, becomes searchable. By default, the site columns, which will have a crawled property and a managed property, are created automatically but not the list columns .

Similarly, let’s try to create a managed property against the list column ‘Experience’ so that it can be used inside search query for refinement of search results. Experience is a list column as shown below.

column

This will open up the existing managed properties Window. It also contains the option to create a new managed property.

Populate the Managed Property name, description, and data type.

Managed property

On scrolling down there are couple of attributes that we can set for the managed property.

main

main

Next step is to add mapping to the crawled property.

add a mapping

Note

Make sure to check the Searchable, Queryable, Retrievable check boxes; If the site column data has to come up in the search results or has to be used to search the queries . If the searchable check box is left blank, even after a crawled property mapping to a managed property, the list column data will not come up in the search results.

Populate the category as Share Point and the property name as the desired List column Name (Here, we are looking to map the Experience list column).

It returns the two results.

results

Our List column is the highlighted one. Usually, the list columns will be of the format ows_q_XXXX where XXXX, which indicates the shorthand for the column data type.

Click OK to complete the mapping and metadata property creation. Now, the metadata property will be available in the metadata property listing section.

Let’s try searching for the experience metadata property.

property

It has successfully listed the newly created metadata property, as shown below:

metadata property

This managed property can now be used in the front end (Core Search Result Web part & Content Search Web part) to refine, sort and query the search results. The ultimate aim of the managed property is to map itself to the crawled list column so that,

  1. The list column data comes up in the search results.
  2. The list column data can be queried, using Content Search Web part and Core Search Result Web part.