{"id":140,"date":"2020-02-17T16:25:44","date_gmt":"2020-02-17T15:25:44","guid":{"rendered":"https:\/\/help.metashare.com\/metashare-help-faq-how-do-i-change-the-name-of-one-of-the-document-filters-columns\/"},"modified":"2026-05-08T23:25:34","modified_gmt":"2026-05-08T21:25:34","slug":"how-do-i-change-the-name-of-one-of-the-document-filters-columns","status":"publish","type":"page","link":"https:\/\/help.metashare.com\/en\/metashare\/faq\/structure\/how-do-i-change-the-name-of-one-of-the-document-filters-columns\/","title":{"rendered":"How do I change the name of one of the document filters\/columns?"},"content":{"rendered":"\n<p>If you want to change the display name of one of the columns that you use within MetaShare, the recommended method to start with is to use SharePoint&#8217;s standard browser interface (method 1 below). If standard SharePoint does not permit you to change the name, due to name conflict, you could use method 2.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Method 1 &#8211; Using SharePoint&#8217;s web interface<\/h2>\n\n\n\n<p>This is method is straightforward and does not require any scripting.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https:\/\/help.metashare.com\/en\/adminmanual\/how-to-open-a-site-content-type\">Open the content type that is used in the workspace.<\/a><\/li>\n\n\n\n<li>In the new window that open up, click on the column that you want to rename, in this case &#8220;Project phase&#8221;:<br><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/help.metashare.com\/wp-content\/uploads\/image-663.png\" alt=\"A site content type's properties\" width=\"620\" height=\"687\"><\/li>\n\n\n\n<li>Click on the link &#8220;Edit site column&#8221;:<br><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/help.metashare.com\/wp-content\/uploads\/image-664.png\" alt=\"A site content type's column properties\" width=\"731\" height=\"431\"><\/li>\n\n\n\n<li>Change the name of the column in the &#8220;Column name&#8221; field and then scroll down to the bottom of the page and click on the &#8220;OK&#8221; button:<br><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/help.metashare.com\/wp-content\/uploads\/image-667.png\" alt=\"Change the display name of the site column\" width=\"453\" height=\"141\"><br>If you get this warning message:<br><img loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-4388\" src=\"https:\/\/help.metashare.com\/wp-content\/uploads\/Choose-another-name.jpg\" alt=\"Choose another name\" width=\"358\" height=\"107\" srcset=\"https:\/\/help.metashare.com\/wp-content\/uploads\/Choose-another-name.jpg 435w, https:\/\/help.metashare.com\/wp-content\/uploads\/Choose-another-name-300x90.jpg 300w\" sizes=\"auto, (max-width: 358px) 100vw, 358px\" \/><br>Try again by adding an extra space in the end of the name. If this still does not work, then you will need to use PowerShell to change the name (see method 2 below).<\/li>\n\n\n\n<li>Click on the &#8220;OK&#8221; button on this page:<br><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/help.metashare.com\/wp-content\/uploads\/image-668.png\" alt=\"Click on the &quot;OK&quot; button on this page\" width=\"679\" height=\"400\"><\/li>\n\n\n\n<li><a href=\"https:\/\/help.metashare.com\/en\/adminmanual\/how-to-publish-unpublish-a-site-content-type\/\">Republish the changed content type<\/a>.<\/li>\n<\/ol>\n\n\n\n<div class=\"wp-block-group has-accent-2-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">Get started with PnP Powershell<\/h2>\n\n\n\n<p>This page contains code snippets for PnP PowerShell, a module from the Patterns and Practices community with many useful commands for managing Microsoft 365.<\/p>\n\n\n\n<p>To get started you need to:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https:\/\/learn.microsoft.com\/en-us\/powershell\/scripting\/install\/installing-powershell-on-windows\" target=\"_blank\" rel=\"noreferrer noopener\">Install PowerShell 7<\/a> on your machine<\/li>\n\n\n\n<li><a href=\"https:\/\/pnp.github.io\/powershell\/articles\/installation.html\" target=\"_blank\" rel=\"noreferrer noopener\">Install the PnP.PowerShell module<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/pnp.github.io\/powershell\/articles\/registerapplication.html\" target=\"_blank\" rel=\"noreferrer noopener\">Register an app in Entra ID<\/a> that PnP.PowerShell can use for authentication <\/li>\n\n\n\n<li>Start PowerShell 7 from the start menu (or run pwsh.exe). PnP.PowerShell is imported automatically.<\/li>\n\n\n\n<li>Connect to your SharePoint site using:<br><code>Connect-PnPOnline `<br>-Interactive `<br>-Url \"https:\/\/[tenant].sharepoint.com\/\" `<br>-ClientId \"[Your PnP PowerShell App Id, found in Azure Portal]\"<\/code><\/li>\n\n\n\n<li>Run any of the available <a href=\"https:\/\/pnp.github.io\/powershell\/cmdlets\/index.html\">commands<\/a><\/li>\n<\/ol>\n<\/div><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Method 2 &#8211; Using PowerShell<\/h2>\n\n\n\n<p>If you are unable to rename a SharePoint column using SharePoint&#8217;s web interface, you will have to do it using PowerShell by following these steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open PowerShell (click on the computer\u2019s start button and type \u201cPowerShell\u201d) and start the application.<\/li>\n\n\n\n<li>Connect to <a href=\"https:\/\/help.metashare.com\/en\/get-started\/definition-of-columns-and-content-types\/#definition-of-the-content-type-hub\">SharePoint&#8217;s content type hub<\/a> by writing this command (replace &#8220;[tenant]&#8221; with your tenant):<br><code>Connect-PnPOnline `<br>-Interactive `<br>\u2013Url https:\/\/[tenant].sharepoint.com\/sites\/contentTypeHub `<br>-ClientId \"[Your PnP PowerShell App Id, found in Azure Portal]\"<\/code><\/li>\n\n\n\n<li>Rename the column by writing this command:<br><code>Set-PnPField -Identity \"Column's-Internal-Name\" -Values @{ Title = \"The column's new display name\" }<\/code><br><br>E.g.:<br><code>Set-PnPField -Identity \"Area\" -Values @{ Title = \"Process\" }<\/code><\/li>\n\n\n\n<li><a href=\"https:\/\/help.metashare.com\/en\/adminmanual\/how-to-publish-unpublish-a-site-content-type\/\">Republish the changed content type<\/a>.<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>MetaShare FAQ: How Do I Change The Name Of One Of The Document Filters Columns. Find the answer to this common question about MetaShare and SharePoint document&#8230;<\/p>\n","protected":false},"author":4,"featured_media":0,"parent":10731,"menu_order":1,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":{"0":"post-140","1":"page","2":"type-page","3":"status-publish","5":"no-featured-image-padding"},"_links":{"self":[{"href":"https:\/\/help.metashare.com\/en\/wp-json\/wp\/v2\/pages\/140","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/help.metashare.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/help.metashare.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/help.metashare.com\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/help.metashare.com\/en\/wp-json\/wp\/v2\/comments?post=140"}],"version-history":[{"count":23,"href":"https:\/\/help.metashare.com\/en\/wp-json\/wp\/v2\/pages\/140\/revisions"}],"predecessor-version":[{"id":12619,"href":"https:\/\/help.metashare.com\/en\/wp-json\/wp\/v2\/pages\/140\/revisions\/12619"}],"up":[{"embeddable":true,"href":"https:\/\/help.metashare.com\/en\/wp-json\/wp\/v2\/pages\/10731"}],"wp:attachment":[{"href":"https:\/\/help.metashare.com\/en\/wp-json\/wp\/v2\/media?parent=140"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}