
Hi @Bikram Pal,
You can update the text field of an item by item ID using PowerShell like the example below.
$SiteURL = "http://sp2019"
$ListName = "test"
#Get the List
$List = (Get-SPWeb $SiteURL).Lists.TryGetList($ListName)
#List of Item IDs to update
$ItemID = 1911
#Get Item by ID
$ListItem = $List.GetItembyID($ItemID)
#Update List Item Fields
$ListItem["TextField"]="test"
$ListItem.SystemUpdate()
Write-host "Updated Item ID:"$ItemID
Remember to replace the variable $SiteURL, $ListName, $ListItem["ColumnName"] with your own.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
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.