How do you set sharepoint user field to allow multiple users with powershell?
Add-PnPField -List $RecordListName -DisplayName $fieldName -InternalName $fieldName -Type User -Required -AllowMultipleValues -ErrorAction Continue -AddToDefaultView | Out-Null
Tried using -AllowMultipleValues but get the below error
Error: A parameter cannot be found that matches parameter name 'AllowMultipleValues'.