Click here to Skip to main content
15,884,629 members
Articles / Productivity Apps and Services / Sharepoint
Tip/Trick

Get all Lookup Columns in a SharePoint site

Rate me:
Please Sign up or sign in to vote.
4.67/5 (2 votes)
7 Apr 2014CPOL 15.6K   1   1

Introduction

The following code gets all the lookup columns present in all the list in a site collection. One can modify this to search for lookup columns with a particular name.

Using the code

You need to run the Powershell script in either 'SharePoint 2010 Management Shell' or third party editors like 'Power GUI' etc. Please note that the script should run on the server machine on which the site collection is present.

Also, one has to open the console as 'Administrator', otherwise will get error.

C++
# Add SharePoint Snapin to PowerShell            
if((Get-PSSnapin | Where {$_.Name -eq "Microsoft.SharePoint.PowerShell"}) -eq $null) {            
    Add-PSSnapin Microsoft.SharePoint.PowerShell            
}
    
function GetAllLookupColumns
{
    Param(

        [Parameter(Mandatory=$true, HelpMessage='-URL - Please provide the URL of the site collection.')]
        [string]$Url

    ) # END PARAMS
      
    if ($Url)
    {
        #write "Get the url"
        $site = Get-SPSite $Url
        #write "Get the url"
        foreach ($spweb in $site.AllWebs){  
            foreach($list in $spweb.Lists){
                foreach ($field in $list.Fields){ 
                    if($field.Type -eq "Lookup")
                    {
                        Write-Host "Match :: WEB - "$spweb.Url" :: Field - "$field" :: List - "$list
                    }
                }

            }
        }        
    }
    $site.dispose()            
    echo "Finished"
} 

To get all the places of lookup columns with a particular name, one can edit this code to have 1 more input parameter of field name and compare that in the IF condition.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Volynsky Alex8-Apr-14 4:56
professionalVolynsky Alex8-Apr-14 4:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.