Hi Team,
Could you please help to get the Lookup field value and updating lookup fileds using PnP PowerShell.
Thanks,
Ramakrishna T
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajkiran SwainPosted Jul 25, 2017, 2:20 AM
web = Get-SPWeb $webURL
$lookupWeb = Get-SPWeb $lookupWebURL
$column = $web.Fields[$columnName]
$lookupList = $web.Lists[$lookupListName]
$newLookupListID = "{"+$lookupList.ID.ToString()+"}"
$newLookupWebID = $web.ID.ToString()
$column.SchemaXml
Sagar PardeshiPosted Jul 24, 2017, 3:53 AM