I am trying to add an existing site column to a list in Sharepoint. I know how to create a new column in a list but I am having issues adding an exising column to my list using powershell. Below is what I have put together and I'm pretty sure the line below with the $list.Fields.Add value is wrong. Ha! Any help would be appreciated.
Cheers!
$webURL = "https://xyz.com/abc/"
$web = Get-SPWeb $webURL
$list = $web.Lists["List Center"]
$list.Fields.Add(web.AvailableFields["Text1"])
$list.Update()

.jpeg)





