Forum Discussion
LynnProspect
Jul 09, 2025Iron Contributor
Imported term sets, and renaming a term set
I created a term set consisting of around 450 entries, by importing from a CSV. I've now been asked to add another 100+ terms to the set. I've just read that we can only import a term set once - that...
grant_jenkins
Jul 11, 2025Iron Contributor
LynnProspect You should be able to write a PowerShell script that imports a list of terms from a CSV and for each term use New-PnPTerm to add the term to an existing Term Set.
powershell/documentation/New-PnPTerm.md at dev · pnp/powershell · GitHub
NOTE: As always, ensure you test this in a test tenant first to ensure it works as expected.
Example below.
New-PnPTerm -TermSet "Departments" -TermGroup "Corporate" -Name $term- LynnProspectJul 14, 2025Iron Contributor
Thank you, but I don't use Powershell. (I find it frustrating that lots of Sharepoint functionality has to be managed via Powershell.)