Forum Discussion
Matt Munslow
Nov 25, 2016Former Employee
Adding Descriptions to Fields
Is it possible to add a description to the field in a custom list using Add-PnPField? Or does anyone have a way of programmatically adding a description after the field has been created.
Matt Munslow
Nov 25, 2016Former Employee
This works:
$field = Get-PnPField -List Risks -Identity Likelihood
$field.Description
$field.Description="This works"
$field.Update()
- KristofBoschmanNov 24, 2022Copper ContributorJust use this: Set-PnPField -Identity "MyField" -Values @{Description="MyDescription"}