Pregunta

We have a document library with thousands of files that are not properly categorized. On of the main reasons this happened is because the columns are not required to contain information.

Is it possible to go to these existing Columns and change them from Yes/No type information to choice type information that has "Require that this column contains information" enabled.

Is there any other option that I would go on to properly re-categorize these files ?

¿Fue útil?

Solución

Yes you can change the required field at any point. It will not affect the existing documents until after someone tries to edit them, only at this point Sharepoint will force user to enter data for required fields.

If you have some pattern you can follow you could write PowerShell script to loop over the items and update the metadata (sometimes you can have indication of the metadata in the document name, sometimes info in different field may inform what other metadata should be)

Changing the boolean type to column is more problematic. Not sure if even supported after the creation. But you can deal with it differently. Create new column as choice enter whatever values you want (I guess Yes/No will still be an option) Then use either PowerShell/Designer Workflow/Flow to copy the values from the boolean to choice column. After that validate that everything is as you expect it, if yes then you can delete that boolean column.

Licenciado bajo: CC-BY-SA con atribución
scroll top