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

sns 9,226 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?

SharePoint Server Management
SharePoint Server Management
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Management: The act or process of organizing, handling, directing or controlling something.
2,796 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Trevor Seward 11,681 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,041 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.