What is internal field name for column? and how to check whther interfield name is correct?

sns 9,246 Reputation points
2021-01-28T08:56:55.95+00:00

What is internal field name for column? and how to check whether internal filed name is same or not with current column name with script? please share me script.

and how to get internal field name of a column?

Microsoft 365 and Office | SharePoint Server | For business
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. trevorseward 11,711 Reputation points
    2021-01-28T19:12:23.947+00:00

    You can compare the column name with the SharePoint Management Shell.

    powershell
    $web = Get-SPWeb https://webUrl
    $list = $web.Lists['List Display Name']
    $list.Fields | select Title,InternalName
    
    0 comments No comments

  2. JoyZ 18,111 Reputation points
    2021-01-29T01:45:05.877+00:00

    Hi @sns ,

    Agree with trevor.

    PowerShell result for your reference:

    61642-image.png

    More information for your reference:

    https://techtrainingnotes.blogspot.com/2012/10/sharepointfinding-column-display-and.html

    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.


    If an Answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.